/* Import Montserrat Bold Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
:root {
    --primary: #00C4B3;
    --secondary: #0D233B;
    --accent: #F18F01;
    --dark: #1A1A2E;
    --light: #F8F9FA;
    --success: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}
/* styles.css - Mobile Menu and Dropdown Styles */
.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
}

/* Default desktop dropdown styles */
nav ul li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 1000;
    padding: 5px 0;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #007bff;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a .fas {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a .fas {
    transform: rotate(180deg);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 0;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
    }
    
    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        background: #f8f9fa;
        border-radius: 0;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 12px 20px 12px 40px;
        border-bottom: 1px solid #e9ecef;
    }
    
    .dropdown.active > a .fas {
        transform: rotate(180deg);
    }
    
    .mobile-menu.active {
        color: #007bff;
    }
}

/* Smooth transitions */
nav, .dropdown-menu {
    transition: all 0.3s ease;
}
a {
    text-decoration: none;
    color: inherit;
}

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

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo h1 {
    font-size: 24px;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #00b3a3;
    border-color: #00b3a3;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--secondary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

.btn-accent:hover {
    background-color: #e08401;
    border-color: #e08401;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Ad Formats Section */
.ad-formats {
    padding: 100px 0;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.format-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.format-icon {
    height: 80px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.format-content {
    padding: 25px;
}

.format-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.format-content p {
    color: #666;
    margin-bottom: 20px;
}

.format-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.format-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.format-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 196, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 32px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-item p {
    color: #666;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    opacity: 0.8;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background-color: white;
}

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

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-date {
    margin-right: 15px;
}

.blog-category {
    background-color: rgba(0, 196, 179, 0.1);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.blog-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.stats {
    background-color: var(--secondary);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--primary);
}

.stat-item p {
    font-size: 18px;
    opacity: 0.8;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #00a396 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 20px;
}

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

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--primary);
}

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

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background-color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    nav {
        width: 100%;
        order: 3;
        margin-top: 20px;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li {
        margin: 0;
    }

    .mobile-menu {
        display: block;
    }

    .auth-buttons {
        margin-left: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .ad-formats,
    .why-choose-us,
    .testimonials,
    .blog {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .stats {
        padding: 60px 0;
    }

    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 28px;
    }

    .auth-buttons {
        display: none;
    }

    .header-container {
        justify-content: space-between;
    }
}
/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-content {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.contact-form-container>p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 196, 179, 0.1);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #00b3a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 196, 179, 0.3);
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 196, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.info-content p {
    color: var(--gray);
    margin-bottom: 5px;
}

.info-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #00b3a3;
}

.chat-option {
    background: rgba(0, 196, 179, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--primary);
}

.chat-option h4 {
    margin-bottom: 10px;
    color: var(--secondary);
}

.chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
}

.chat-btn:hover {
    background: #00b3a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 196, 179, 0.3);
}

.business-hours {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.business-hours p {
    color: var(--gray);
    margin-bottom: 5px;
}
          .advertisers-hero {
              background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
              color: white;
              padding: 100px 0 60px;
              text-align: center;
          }
    
          .advertisers-hero h1 {
              font-size: 3rem;
              margin-bottom: 20px;
              color: white;
          }
    
          .advertisers-hero p {
              font-size: 1.2rem;
              max-width: 700px;
              margin: 0 auto 30px;
              opacity: 0.9;
          }
    
          .stats-section {
              padding: 80px 0;
              background: var(--light);
          }
    
          .stats-grid {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
              gap: 30px;
              text-align: center;
          }
    
          .stat-card {
              background: white;
              padding: 40px 20px;
              border-radius: 10px;
              box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
              transition: transform 0.3s;
          }
    
          .stat-card:hover {
              transform: translateY(-5px);
          }
    
          .stat-icon {
              width: 80px;
              height: 80px;
              background: rgba(0, 196, 179, 0.1);
              border-radius: 50%;
              display: flex;
              align-items: center;
              justify-content: center;
              margin: 0 auto 20px;
              color: var(--primary);
              font-size: 2rem;
          }
    
          .stat-number {
              font-size: 3rem;
              font-weight: 700;
              color: var(--primary);
              display: block;
              margin-bottom: 10px;
          }
    
          .stat-label {
              font-size: 1.1rem;
              color: var(--secondary);
              font-weight: 700;
          }
    
          .benefits-section {
              padding: 80px 0;
              background: white;
          }
    
          .benefits-grid {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
              gap: 40px;
          }
    
          .benefit-card {
              text-align: center;
              padding: 40px 30px;
              background: var(--light);
              border-radius: 10px;
              transition: transform 0.3s;
          }
    
          .benefit-card:hover {
              transform: translateY(-5px);
          }
    
          .benefit-icon {
              width: 70px;
              height: 70px;
              background: var(--primary);
              border-radius: 50%;
              display: flex;
              align-items: center;
              justify-content: center;
              margin: 0 auto 25px;
              color: white;
              font-size: 1.8rem;
          }
    
          .benefit-card h3 {
              font-size: 1.5rem;
              margin-bottom: 15px;
              color: var(--secondary);
          }
    
          .benefit-card p {
              color: var(--gray);
              line-height: 1.6;
          }
    
          .how-it-works {
              padding: 80px 0;
              background: linear-gradient(135deg, var(--primary) 0%, #00a396 100%);
              color: white;
          }
    
          .steps-container {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
              gap: 30px;
              margin-top: 50px;
          }
    
          .step {
              text-align: center;
              position: relative;
          }
    
          .step-number {
              width: 60px;
              height: 60px;
              background: white;
              color: var(--primary);
              border-radius: 50%;
              display: flex;
              align-items: center;
              justify-content: center;
              font-size: 1.5rem;
              font-weight: 700;
              margin: 0 auto 20px;
              position: relative;
              z-index: 2;
          }
    
          .step-content h3 {
              font-size: 1.5rem;
              margin-bottom: 15px;
          }
    
          .step-content p {
              opacity: 0.9;
          }
    
          .targeting-section {
              padding: 80px 0;
              background: white;
          }
    
          .targeting-grid {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
              gap: 30px;
          }
    
          .targeting-card {
              background: var(--light);
              padding: 30px;
              border-radius: 10px;
              border-left: 4px solid var(--primary);
          }
    
          .targeting-card h3 {
              font-size: 1.3rem;
              margin-bottom: 15px;
              color: var(--secondary);
          }
    
          .targeting-card ul {
              list-style: none;
              margin-left: 0;
          }
    
          .targeting-card ul li {
              margin-bottom: 10px;
              padding-left: 25px;
              position: relative;
          }
    
          .targeting-card ul li:before {
              content: '✓';
              position: absolute;
              left: 0;
              color: var(--success);
              font-weight: 700;
          }
    
          .pricing-section {
              padding: 80px 0;
              background: var(--light);
          }
    
          .pricing-cards {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
              gap: 30px;
              margin-top: 50px;
          }
    
          .pricing-card {
              background: white;
              padding: 40px 30px;
              border-radius: 10px;
              box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
              text-align: center;
              position: relative;
              transition: transform 0.3s;
          }
    
          .pricing-card:hover {
              transform: translateY(-10px);
          }
    
          .pricing-card.featured {
              border: 3px solid var(--accent);
              transform: scale(1.05);
          }
    
          .pricing-card.featured:hover {
              transform: scale(1.05) translateY(-10px);
          }
    
          .popular-badge {
              position: absolute;
              top: -15px;
              left: 50%;
              transform: translateX(-50%);
              background: var(--accent);
              color: white;
              padding: 8px 25px;
              border-radius: 20px;
              font-size: 0.9rem;
              font-weight: 700;
          }
    
          .price {
              font-size: 3rem;
              font-weight: 700;
              color: var(--primary);
              margin: 20px 0;
          }
    
          .price span {
              font-size: 1rem;
              color: var(--gray);
          }
    
          .pricing-features {
              list-style: none;
              margin: 30px 0;
          }
    
          .pricing-features li {
              margin-bottom: 15px;
              padding-left: 25px;
              position: relative;
          }
    
          .pricing-features li:before {
              content: '✓';
              position: absolute;
              left: 0;
              color: var(--success);
              font-weight: 700;
          }
    
          .cta-section {
              padding: 100px 0;
              background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
              color: white;
              text-align: center;
          }
    
          .cta-section h2 {
              font-size: 2.5rem;
              margin-bottom: 20px;
          }
    
          .cta-section p {
              font-size: 1.2rem;
              max-width: 600px;
              margin: 0 auto 30px;
              opacity: 0.9;
          }
    
          .cta-buttons {
              display: flex;
              justify-content: center;
              gap: 20px;
              flex-wrap: wrap;
          }
    
          /* Responsive Styles */
          @media (max-width: 768px) {
              .advertisers-hero h1 {
                  font-size: 2.2rem;
              }
    
              .pricing-card.featured {
                  transform: none;
              }
    
              .pricing-card.featured:hover {
                  transform: translateY(-10px);
              }
    
              .cta-buttons {
                  flex-direction: column;
                  align-items: center;
              }
    
              .btn {
                  width: 200px;
                  text-align: center;
              }
          }
    
          @media (max-width: 576px) {
              .advertisers-hero {
                  padding: 60px 0 40px;
              }
    
              .stats-section,
              .benefits-section,
              .how-it-works,
              .targeting-section,
              .pricing-section {
                  padding: 60px 0;
              }
    
              .cta-section {
                  padding: 80px 0;
              }
          }
/* Contact Page Mobile Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-content {
        padding: 60px 0;
    }

    .contact-form-container h2 {
        font-size: 1.5rem;
    }

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

    .contact-form,
    .contact-info {
        padding: 25px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .info-icon {
        margin: 0 auto;
    }

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

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero {
        padding: 50px 0 30px;
    }

    .contact-content {
        padding: 40px 0;
    }

    .contact-form,
    .contact-info {
        padding: 20px;
    }

    .checkbox-group {
        align-items: flex-start;
    }

    .checkbox-group label {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 12px 20px;
    }
}

/* Form Focus Effects for Better UX */
.form-group.focused label {
    color: var(--primary);
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {

    input,
    select,
    textarea {
        padding: 14px 15px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .btn {
        min-height: 44px;
        /* Minimum touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .checkbox-group input {
        min-width: 18px;
        min-height: 18px;
    }
}

/* Ensure proper spacing on very small screens */
@media (max-width: 380px) {

    .contact-form,
    .contact-info {
        padding: 15px;
    }

    .contact-form-container h2 {
        font-size: 1.3rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }
}