.testimonials-section {
    background: var(--secondary-gradient);
    border-radius: 24px;
}

.testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.testimonial-track-wrapper {
    overflow: hidden;
    flex: 1;
}

.testimonial-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(50% - 8px);
    gap: 16px;
    transition: transform 0.4s ease;
}

.testimonial-card {
    background: white;
    border: 1px solid #e7f1ff;
    border-radius: 18px;
    padding: 24px 28px;
    /* box-shadow: 0 16px 40px rgba(237, 28, 36, 0.06); */
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.testimonial-card::after {
    content: "”";
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 40px;
    color: #1c76ed;
    opacity: 0.3;
    font-weight: 700;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    width: 80%;
}

.testimonial-meta {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-gradient);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.testimonial-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.testimonial-nav:hover {
    transform: translateY(-2px);
    border-color: var(--blue-color);
    box-shadow: 0 12px 30px rgba(23, 71, 158, 0.12);
}

.testimonial-nav:disabled {
    opacity: 0.35;
    pointer-events: none;
}

@media (max-width: 991px) {
    .testimonial-track {
        grid-auto-columns: 100%;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 20px 22px;
    }
    .testimonial-quote {
        font-size: 1.05rem;
    }
}

/* Font Faces */
@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNovaRegular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/gotham-book-webfont.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/gotham-medium-webfont.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/gotham-bold-webfont.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* General Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #ED1C24 0%, #F68A46 100%);
    --secondary-gradient: linear-gradient(135deg, #F0F8FF 0%, #CEE8FF 100%);
    --purple-color: #8B5CF6;
    --red-color: #ED1C24;
    --green-color: #10B981;
    --blue-color: #17479E;
    --dark-gray: #1F1F20;
    --light-gray: #F7FAFC;
    --text-gray: #58595B;
    --ligth-gray: #D0D0D0;
    --white-color: #FFFFFF;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gotham', 'Proxima Nova', 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: 'Proxima Nova', 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.logo-container {
    width: 50px;
    height: 50px;
}

.logo-img {
    border-radius: 8px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A8A;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #60A5FA;
}

.nav-link {
    color: var(--text-gray);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--dark-gray);
}

.navbar .btn-common {
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-guarantee {
    display: flex;
    align-items: center;
}

.hero-guarantee-text {
    color: var(--text-gray);
    line-height: 1.5;
}

/* Compare Section */
.compare-section {
    background: #f7f9fc;
}

.compare-card-row{
    margin-top: 32px !important;
    display: flex;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.compare-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    width: 360px;
    position: relative;
}

.compare-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(23, 71, 158, 0.35);
}

.compare-card--right {
    border: 1.5px solid var(--blue-color);
}

.compare-chip {
    display: inline-block;
    background: var(--blue-color);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    position: absolute;
    top: -16px;
}

.compare-card img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 12px;
}

.compare-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; 
}

.compare-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 1rem;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.compare-list--error i {
    color: #ED1C24;
    font-size: 1rem;
}

.compare-list--success i {
    color: var(--blue-color);
    font-size: 1rem;
}

.compare-list span {
    flex: 1;
}

.compare-list li:hover {
    background-color: #f4f7fb;
    transform: translateX(4px);
}

.compare-card::before {
    content: '';
    position: absolute;
    inset: -40% -30% auto auto;
    height: 60%;
    background: radial-gradient(circle at 30% 30%, rgba(23, 71, 158, 0.12), transparent 55%);
    filter: blur(18px);
    z-index: 0;
    pointer-events: none;
}

.compare-card--left::before {
    background: radial-gradient(circle at 30% 30%, rgba(237, 28, 36, 0.12), transparent 55%);
}

/* .compare-card > * {
    position: relative;
    z-index: 1;
} */

@media (max-width: 991px) {
    .compare-title {
        font-size: 1.25rem;
    }
    .compare-card {
        padding: 20px;
    }    
}

@media (max-width: 767px) {
    .compare-card {
        padding: 18px;
    }
    .compare-card-row{
        flex-direction: column;
        gap: 42px;
    }
}

/* Campaign Card */
.hero-campaign-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    overflow: hidden;
}

.campaign-card-header {
    background-color: #F7FAFC;
    display: flex;
    align-items: center;
    gap: 8px;
    padding:14px 16px;
    border-bottom: 1px solid #E5E7EB;
}

.campaign-dots {
    display: flex;
    gap:4px;
}

.campaign-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
}

.campaign-card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
    margin: 0;
}

.campaign-card-body {
    padding: 16px;
}
.campaign-card-body .form-label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.campaign-card-body .form-control,
.campaign-card-body .form-select {
    border: 2px solid #E5E7EB;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.campaign-card-body .form-control:focus,
.campaign-card-body .form-select:focus {
    border-color: var(--blue-color);
    box-shadow: 0 0 0 0.2rem rgba(23, 71, 158, 0.1);
}

.input-group-text {
    border: 2px solid #E5E7EB;
    border-right: none;
    background: white;
    padding: 0.75rem 1rem;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-left: 2px solid var(--blue-color);
}

.campaign-estimate {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    justify-content: start;
}

.estimate-price {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 500;
    background-color: #daf0ff;
    padding: 4px 8px;
    border-radius: 32px;
}

.estimate-price small {
    font-size: 0.875rem;
    color: var(--dark-gray);
}

.estimate-views-bottom h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.budget-slider {
    padding: 0.5rem 0;
}

.form-range {
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
}

.form-range::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    background: var(--blue-color);
    border: none;
    box-shadow: 0 2px 6px rgba(23, 71, 158, 0.3);
}

.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--blue-color);
    border: none;
    box-shadow: 0 2px 6px rgba(23, 71, 158, 0.3);
}

.budget-labels {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.btn {
    transition: all 0.3s ease;
}

.btn-common {
    padding: 8px 16px;
    font-weight: 400;
    border-radius:32px;
    font-size: 14px;
    text-decoration: none;
}

.btn-dark-solid {
    background-color: var(--dark-gray);
    color: white;
    border: none;
    box-shadow: 0 6px 16px rgba(26, 32, 44, 0.15);
}

.btn-dark-solid:hover {
    background-color: #1A202C;
    color: white;
    transform: translateY(-2px);
}

.btn-gradient {
    background: var(--primary-gradient);
    color: white;
    border: none;
    box-shadow: 0 6px 18px rgba(255, 71, 87, 0.35);
}

.btn-gradient:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 71, 87, 0.45);
}

.btn-border-bottom {
    background-color: transparent;
    color: var(--dark-gray);
    border: none;
    border-bottom: 1px solid var(--dark-gray);
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    width: fit-content;
}

.btn-border-bottom:hover {
    color: #FF4757;
    border-bottom-color: #FF4757;
}

/* Section Badges */
.section-badge {
    color: var(--red-color);
    border: 1px solid var(--red-color);
    border-radius: 32px;
    padding: 0.5rem 1.25rem;
    font-weight: 400;
    font-size: 14px;
}

.section-badge.badge-blue {
    color: var(--blue-color);
    border: 1px solid var(--blue-color);
}

/* Why Choose Section */
.why-choose-section {
    background-color: var(--dark-gray);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.5;
    font-weight: 400;
}

.section-description.text-ligth-gray {
    color: var(--ligth-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-icon.bg-purple {
    background-color: var(--purple-color);
}

.benefit-icon.bg-red {
    background-color: var(--red-color);
}

.benefit-icon.bg-green {
    background-color: var(--green-color);
}

.benefit-icon.bg-blue {
    background-color: var(--blue-color);
}

.benefit-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--secondary-gradient);
    border-radius: 24px;
    border: 1px solid #B7C6E1;
}

.accordion-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.step-header:hover {
    background-color: #F9FAFB;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

/* FAQ accordion title */
.faq-item .step-title {
    font-size: 14px;
    font-weight: 400;
}

.step-icon {
    font-size: 1.25rem;
    color: var(--text-gray);
    transition: transform 0.3s;
}

.step-item.active .step-icon {
    transform: rotate(180deg);
}

.step-content {
    padding: 0 1.5rem 1.5rem;
}

.step-content .form-control {
    border: 2px solid #E5E7EB;
    padding: 0.875rem;
    font-size: 1rem;
}

.step-content p {
    color: var(--text-gray);
    margin: 0;
}

.illustration-container {
    padding: 2rem;
}

.illustration-container img {
    border-radius: 12px;
}

/* FAQ Section */
.faq-section {
    background-color: #fff7f4;
}

/* Why Google Ads Section */
.why-google-ads-section {
    background-color: white;
}

.advantage-card {
    background-color:#f8f9fc !important;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
}


.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-gray);
    text-align: left;
}

/* Policy Page */
.policy-section {
    margin-bottom: 2rem;
}

.policy-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.policy-subheading {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark-gray);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-section p,
.policy-section address {
    color: var(--text-gray);
    line-height: 1.6;
}

.policy-section p,
.policy-section address {
    margin-bottom: 0.75rem;
}

.policy-section address {
    font-style: normal;
}

.policy-list {
    margin: 0 0 1.5rem 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.policy-list li {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form-section .form-label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-form-section .form-control {
    border: 2px solid #E5E7EB;
    padding: 0.875rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.contact-form-section .form-control:focus {
    border-color: var(--blue-color);
    box-shadow: 0 0 0 0.2rem rgba(23, 71, 158, 0.1);
}

.contact-form-section textarea.form-control {
    resize: vertical;
}

.contact-info-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    height: auto;
}

.contact-info-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-icon i {
    color: white;
    font-size: 18px;
    line-height: normal;
}

.contact-info-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-info-text a {
    color: var(--blue-color);
    transition: color 0.3s;
}

.contact-info-text a:hover {
    color: var(--red-color);
}

/* About Us Page */
.about-hero-section {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    border-radius: 24px;
    padding: 2rem;
}

.about-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--blue-color);
    border-radius: 50%;
    margin: 0 auto;
}

.about-hero-icon i {
    font-size: 2.5rem;
    color: white;
}

.about-content-section {
    background: white;
}

.about-intro-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--blue-color);
}

.about-intro-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    margin: 0 auto;
}

.about-intro-icon i {
    font-size: 1.75rem;
    color: white;
}

.about-intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin: 0;
    font-weight: 400;
}

/* .about-story-section {
    padding: 2rem 0;
} */

.about-story-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--blue-color);
    border-radius: 32px;
    margin-bottom: 1rem;
}

.about-story-icon i {
    font-size: 18px;
    line-height: normal;
    color: white;
}

.about-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.about-mission-card {
    background: var(--secondary-gradient);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #B7C6E1;
    height: 264px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-mission-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--blue-color);
    border-radius: 32px;
    margin-bottom: 1rem;
}

.about-mission-icon i {
    font-size: 18px;
    line-height: normal;
    color: white;
}

.about-mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue-color);
    margin-bottom: 1rem;
}

.about-mission-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin: 0;
    font-weight: 500;
}

.about-cta-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
}

.about-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--purple-color);
    border-radius: 50%;
    margin: 0 auto;
}

.about-cta-icon i {
    font-size: 2rem;
    color: white;
}

.about-cta-buttons .btn i {
    font-size: 1.125rem;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 991px) {
    .about-section-title {
        font-size: 1.75rem;
    }
    
    .about-intro-text {
        font-size: 1.125rem;
    }
    
    .about-intro-card {
        padding: 2rem;
    }
    
    /* .about-mission-card {
        padding: 2rem;
        margin-top: 2rem;
    } */
}

@media (max-width: 767px) {
    .about-section-title {
        font-size: 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-intro-card {
        padding: 1.5rem;
    }
    
    .about-mission-card {
        padding: 1.5rem;
    }
    
    .about-cta-section {
        padding: 2rem 1.5rem;
    }
}

/* CTA Footer Section */
.cta-footer-section {
    background: var(--primary-gradient);
    padding: 80px 0;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-footer-section .btn-gradient {
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.15);
}

.cta-footer-section .btn-border-bottom {
    color: white;
    border-bottom-color: white;
}


/* Footer */
.footer-section {
    background-color: #1A202C;
    padding: 2rem 0;
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-email {
    color: #CBD5E0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-email:hover {
    color: white;
}

.footer-links a {
    color: #CBD5E0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    color: #CBD5E0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    /* .hero-campaign-card {
        padding: 1.5rem;
    }
     */
    .estimate-views-bottom h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        margin-top: 2rem;
    }
    
    .illustration-container {
        margin-top: 2rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-copyright {
        text-align: center;
        margin-top: 1rem;
    }
    .footer-row{
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 1rem;
    }
    .footer-row .col-md-3{
        width: 100%;
    }
    .footer-row .col-md-6{
        width: 100%;
    }
    .footer-row .col-md-3{
        width: 100%;
    }
    .footer-links{
        justify-content: start;
    }
    .footer-copyright{
        text-align: start;
        margin-top: 0rem;
    }
    .hero-guarantee {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* .hero-campaign-card {
        padding: 1.25rem;
    } */
    
    .campaign-card-title {
        font-size: 1.125rem;
    }
    
    .estimate-price h2 {
        font-size: 1.75rem;
    }
    
    .budget-labels {
        font-size: 0.75rem;
    }
    
    /* .hero-buttons {
        flex-direction: column;
    } */
    
    /* .hero-buttons .btn {
        width: 100%;
    } */
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Button Transitions */
.btn {
    transition: all 0.3s ease;
}


.navbar-toggler{
    border: none;
    box-shadow: none;
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-toggler:focus{
    box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
    transition: opacity 0.2s ease;
}

.navbar-toggler .navbar-toggler-close-icon {
    position: absolute;
    font-size: 1.5rem;
    color: var(--dark-gray);
    opacity: 0;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler.is-open .navbar-toggler-icon {
    opacity: 0;
}

.navbar-toggler.is-open .navbar-toggler-close-icon {
    opacity: 1;
}

@media (max-width:580px){
    .testimonials-section{
        margin-bottom: 0px !important;
        border-radius: 0px !important;
    }
    .how-it-works-section{
        padding: 32px 16px !important;
    }
}