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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FFFFFF;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 16px;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #8BC53F;
    color: #FFFFFF;
    border-color: #8BC53F;
}

.btn-primary:hover {
    background-color: #7AB32F;
    border-color: #7AB32F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 197, 63, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #8BC53F;
    border-color: #8BC53F;
}

.btn-outline:hover {
    background-color: #8BC53F;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 197, 63, 0.4);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background-color: #1A1A1A;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(139, 197, 63, 0.2);
}

.header-solid {
    background-color: #1A1A1A;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #FFFFFF;
    text-decoration: none;
}

.logo svg {
    color: #8BC53F;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8BC53F;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #8BC53F;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(139, 197, 63, 0.2));
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    color: #FFFFFF;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, #FFFFFF, #8BC53F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 197, 63, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(139, 197, 63, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8BC53F;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.hero-control {
    background: rgba(139, 197, 63, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.hero-control:hover {
    background: #8BC53F;
    transform: scale(1.1);
}

.hero-control.prev {
    left: 30px;
}

.hero-control.next {
    right: 30px;
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #8BC53F;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(139, 197, 63, 0.6);
}

/* Availability Checker */
.availability-checker {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ECECEC, #FFFFFF);
    text-align: center;
}

.availability-content h2 {
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.availability-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.availability-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.form-group input:focus {
    outline: none;
    border-color: #8BC53F;
    box-shadow: 0 0 0 4px rgba(139, 197, 63, 0.1);
    transform: translateY(-2px);
}

/* Coverage Map */
.coverage-map {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.coverage-map h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.coverage-map p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.map-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.coverage-area {
    cursor: pointer;
    transition: all 0.3s ease;
}

.coverage-area:hover {
    opacity: 1 !important;
    filter: drop-shadow(0 0 10px #8BC53F);
}

.coverage-tooltip {
    position: absolute;
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

/* Plan Comparison */
.plan-comparison {
    padding: 5rem 0;
    background-color: #ECECEC;
}

.plan-comparison h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1A1A1A;
}

.plan-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-btn {
    padding: 12px 24px;
    border: 2px solid #8BC53F;
    background: transparent;
    color: #8BC53F;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.toggle-btn.active {
    background: #8BC53F;
    color: #FFFFFF;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    border-color: #8BC53F;
    transform: scale(1.05);
}

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

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8BC53F;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header h3 {
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.plan-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #8BC53F;
}

.period {
    color: #666;
    font-size: 1.1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ECECEC;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.check {
    color: #8BC53F;
    font-weight: bold;
}

.cross {
    color: #ccc;
    font-weight: bold;
}

/* About Us */
.about-us {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: #1A1A1A;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Services */
.services {
    padding: 5rem 0;
    background-color: #ECECEC;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-color: #8BC53F;
}

.service-icon {
    color: #8BC53F;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.service-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Featured Deals */
.featured-deals {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.featured-deals h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

.deals-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.deal-card {
    background: #FFFFFF;
    border: 2px solid #ECECEC;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #8BC53F;
}

.deal-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8BC53F;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.deal-card h3 {
    margin: 2rem 0 1rem;
    color: #1A1A1A;
}

.deal-price {
    margin-bottom: 2rem;
}

.deal-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.deal-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ECECEC;
    color: #666;
}

.deal-features li:last-child {
    border-bottom: none;
}

/* Why Quick Cable */
.why-quick-cable {
    padding: 5rem 0;
    background-color: #ECECEC;
}

.why-quick-cable h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.benefit-panel {
    padding: 3.5rem 2.5rem;
    text-align: center;
    background: #FFFFFF;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-panel:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.benefit-panel.alt {
    background: #ECECEC;
}

.benefit-icon {
    color: #8BC53F;
    margin-bottom: 1.5rem;
}

.benefit-panel h3 {
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.benefit-panel p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Speed Test */
.speed-test {
    padding: 5rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

.speed-test h2 {
    margin-bottom: 3rem;
    color: #1A1A1A;
}

.speed-test-widget {
    max-width: 400px;
    margin: 0 auto;
    background: #ECECEC;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.speed-gauge {
    margin-bottom: 2rem;
}

.speed-results {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.result-item {
    text-align: center;
}

.result-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.result-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #8BC53F;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: #ECECEC;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #1A1A1A;
}

.author-info span {
    color: #8BC53F;
    font-size: 0.9rem;
}

/* Partners */
.partners {
    padding: 4rem 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

.partners h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

.partners-slider {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 3rem;
}

.partner-logo {
    flex-shrink: 0;
    padding: 1.5rem 2rem;
    background: #ECECEC;
    border-radius: 12px;
    font-weight: 600;
    color: #1A1A1A;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: #8BC53F;
    color: #FFFFFF;
    transform: translateY(-5px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background-color: #ECECEC;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

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

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.8rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A1A1A;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 197, 63, 0.05);
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: #8BC53F;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

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

.faq-answer.active {
    max-height: 300px;
    padding: 0 1.8rem 1.8rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Blog & Updates */
.blog-updates {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.blog-updates h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

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

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.blog-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #8BC53F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #7AB32F;
}

/* Contact Us */
.contact-us {
    padding: 5rem 0;
    background-color: #ECECEC;
}

.contact-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8BC53F;
    box-shadow: 0 0 0 4px rgba(139, 197, 63, 0.1);
    transform: translateY(-2px);
}

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

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #1A1A1A;
}

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

.contact-item svg {
    color: #8BC53F;
    margin-top: 4px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #1A1A1A;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
}

.live-chat-launcher {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: #8BC53F;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-column ul li a:hover {
    color: #8BC53F;
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

/* Legal Pages */
.legal-page {
    padding: 7rem 0 4rem;
    background-color: #FFFFFF;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-header h1 {
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.help-text {
    color: #666;
    font-size: 1.2rem;
}

.help-text a {
    color: #8BC53F;
    text-decoration: none;
}

.help-text a:hover {
    text-decoration: underline;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content h2 {
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #8BC53F;
}

.legal-content h3 {
    color: #1A1A1A;
    margin: 2rem 0 1rem;
}

.legal-content ul, .legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-control {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .deals-carousel {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        display: block;
    }
    
    .form-group input,
    .form-group button {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .deal-card {
        padding: 2rem;
    }
    
    .benefit-panel {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .service-card,
    .deal-card {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.deal-card,
.benefit-panel {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}