/* Google Ads Landing Page Styles */

/* Hero Section */
.google-ads-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0a1172 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.google-ads-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(96, 165, 250, 0.15) 0%, transparent 50%);
}

.google-ads-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="white" opacity="0.08"/></svg>');
    opacity: 0.3;
}

.google-ads-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.google-ads-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: white;
}

.google-ads-badge svg {
    color: #60a5fa;
}

.google-ads-hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: white;
}

.google-ads-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.google-ads-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.google-ads-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.google-ads-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 ease;
}

.google-ads-btn:hover::before {
    left: 100%;
}

.google-ads-btn-primary {
    background: white;
    color: #0a1172;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.google-ads-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

.google-ads-btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.google-ads-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
    background: #22c55e;
    border-color: #22c55e;
}

/* Problem Section */
.google-ads-problem {
    padding: 80px 0;
    background: #f8fafc;
}

.google-ads-problem-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-ads-section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.google-ads-section-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 0;
}

.google-ads-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.google-ads-problem-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.problem-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.google-ads-problem-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, #0a1172 0%, #1e40af 100%);
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* Why Us Section */
.google-ads-why-us {
    padding: 80px 0;
    background: white;
}

.google-ads-why-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-ads-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.google-ads-why-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.google-ads-why-card:hover {
    border-color: #0ea5e9;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.google-ads-why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.google-ads-why-card p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

/* Packages Section */
.google-ads-packages {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.google-ads-packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-ads-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.google-ads-package-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.google-ads-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(10, 17, 114, 0.15);
}

.package-featured {
    border-color: #0ea5e9;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.2);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(135deg, #0ea5e9, #60a5fa);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.package-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.package-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.package-description {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 24px;
}

.package-features h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #475569;
}

.package-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.package-result {
    background: #eff6ff;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #1e40af;
}

.package-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #0a1172, #1e40af);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 17, 114, 0.3);
}

/* Testimonials Section */
.google-ads-testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.google-ads-testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-ads-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.google-ads-testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.google-ads-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: #64748b;
}

/* CTA Mid Section */
.google-ads-cta-mid {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.google-ads-cta-mid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="white" opacity="0.08"/></svg>');
    opacity: 0.3;
}

.google-ads-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.google-ads-cta-content h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 16px;
    color: white;
}

.google-ads-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: white;
}

.google-ads-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.google-ads-faq {
    padding: 80px 0;
    background: white;
}

.google-ads-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-ads-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.google-ads-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.google-ads-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.google-ads-faq-item.active {
    border-color: #0ea5e9;
}

.google-ads-faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    user-select: none;
}

.google-ads-faq-question:hover {
    background: rgba(14, 165, 233, 0.05);
}

.google-ads-faq-question h4 {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
}

.google-ads-faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0ea5e9;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.google-ads-faq-item.active .google-ads-faq-icon {
    background: #0ea5e9;
    color: white;
    transform: rotate(45deg);
}

.google-ads-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.google-ads-faq-item.active .google-ads-faq-answer {
    max-height: 300px;
    padding: 0 24px 24px 24px;
}

.google-ads-faq-answer p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

/* Final CTA Section */
.google-ads-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1172 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.google-ads-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(96, 165, 250, 0.15) 0%, transparent 50%);
}

.google-ads-cta-final-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-final-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.google-ads-cta-final-content h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 16px;
    color: white;
}

.google-ads-cta-final-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .google-ads-hero-title {
        font-size: 44px;
    }

    .google-ads-packages-grid,
    .google-ads-why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .google-ads-section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .google-ads-hero {
        padding: 100px 0 80px;
    }

    .google-ads-hero-title {
        font-size: 36px;
    }

    .google-ads-hero-subtitle {
        font-size: 18px;
    }

    .google-ads-hero-buttons,
    .google-ads-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .google-ads-btn {
        width: 100%;
        justify-content: center;
    }

    .google-ads-problem-grid {
        grid-template-columns: 1fr;
    }

    .google-ads-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .google-ads-section-title {
        font-size: 32px;
    }

    .google-ads-cta-content h2,
    .google-ads-cta-final-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .google-ads-hero-title {
        font-size: 28px;
    }

    .google-ads-section-title {
        font-size: 28px;
    }

    .package-title {
        font-size: 20px;
    }
}
