/* 
 * The Influencer Network - Main Stylesheet
 * Colors: Black, White, and Red only
 * Font: Montserrat (Regular, Black, Extra Black)
 */

/* Base Styles and Reset */
:root {
    --black: #000000;
    --white: #ffffff;
    --red: #ff0000;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-weight: 900;
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--red);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.red-line {
    height: 4px;
    width: 60px;
    background-color: var(--red);
    margin: 0.5rem auto 2rem;
}

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 15px;
}

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

.logo img {
    height: 22px;
    margin-right: 10px;
}

.logo a {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
}

.desktop-menu {
    display: flex;
    list-style: none;
}

.desktop-menu li {
    margin-left: 2rem;
}

.desktop-menu a {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.desktop-menu a.active {
    color: var(--red);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--black);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--red);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--red);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background-color: var(--black);
    padding: 6rem 2rem 2rem;
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.4s ease;
    transform: translateX(100%);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    transform: translateX(0);
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin: 1.5rem 0;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    transition-delay: 0.1s;
}

.mobile-menu.active li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active li:nth-child(6) { transition-delay: 0.6s; }

.mobile-menu a {
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

.mobile-menu a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--red);
    transition: width 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--white);
}

.mobile-menu a:hover:before {
    width: 100%;
}

.mobile-menu-footer {
    text-align: center;
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
}

.mobile-menu-footer .social-icons {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.mobile-menu-footer .social-icons a {
    color: var(--white);
    font-size: 2.2rem;
    margin: 0 20px;
    transition: all 0.3s ease;
}

.mobile-menu-footer .social-icons a:hover {
    color: var(--red);
    transform: scale(1.2);
}

.mobile-menu-footer .info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mobile-menu-footer .info-item i {
    color: var(--red);
    margin-right: 10px;
}

.mobile-menu-footer .info-item p {
    margin-bottom: 0;
    color: var(--white);
}

body.menu-open {
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Hero Section */
#hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 0;
    overflow: visible;
    margin-bottom: 60px;
    position: relative;
    z-index: 60; /* Higher than brands-scroll to ensure proper stacking */
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    min-width: 300px;
    padding-right: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 45%;
    min-width: 300px;
    overflow: visible;
}

.hero-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    display: block;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--black);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--black);
}

/* City Search Section Styles */
#city-search {
    padding: 80px 0;
    background-color: var(--white);
}

.city-search-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.city-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 250px;
}

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

.city-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    z-index: 2;
}

.city-info h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.city-info p {
    margin: 0;
    font-size: 1rem;
}

.city-card.view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
}

.view-more-content {
    text-align: center;
}

.view-more-content i {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 10px;
}

.view-more-content h3 {
    margin-bottom: 5px;
}

.view-more-content p {
    color: var(--dark-gray);
}

/* Responsive styles for the hero section */
@media (max-width: 992px) {
    #hero {
        margin-bottom: 40px;
    }
    
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
        padding-bottom: 0;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
        padding: 0 20px;
    }
    
    .hero-image {
        max-width: 90%;
        margin: 0 auto;
        min-width: auto;
    }
    
    .hero-image img {
        max-width: 100%;
        width: auto;
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    #hero {
        margin-bottom: 30px;
    }
    
    .hero-wrapper {
        padding-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 20px;
    }
    
    .hero-image img {
        max-height: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    #hero {
        margin-bottom: 20px;
    }
    
    .hero-wrapper {
        padding-top: 40px;
        padding-bottom: 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-image {
        padding: 0 15px;
    }
    
    .hero-image img {
        max-height: 200px;
    }
}

/* Brands Scroll Section */
#brands-scroll {
    padding: 0;
    margin: 0;
    background-color: var(--white);
    position: relative;
    z-index: 50;
    margin-top: -100px;
    margin-bottom: 60px;
    overflow: visible;
}

@media (max-width: 768px) {
    #brands-scroll {
        position: relative;
        z-index: 40; /* Lower than hero section on mobile */
        margin-top: -50px;
        margin-bottom: 40px;
    }
    
    #hero {
        z-index: 50;
    }
    
    .scroll-container {
        padding: 15px 0;
        overflow: hidden;
    }
    
    .logo-item {
        min-width: 130px;
        height: 80px;
    }
    
    .logo-item img {
        max-width: 100px;
        height: 50px;
    }
}

/* Logo Scroll Container */
.scroll-container {
   margin-top: 180px;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background-color: var(--white);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 50;
    opacity: 1;  /* Force visibility */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    visibility: visible !important;
}

.logos {
    display: flex;
    width: max-content;
    animation: none; /* Animation controlled by JS */
}

.logo-item {
    min-width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    background-color: #fff;
    opacity: 1;
}

.logo-item img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    opacity: 1 !important;
    transition: all 0.3s ease;
    object-fit: contain;
    filter: grayscale(90%);
    transform: scale(1);
    display: block;
    visibility: visible !important;
}

.logo-item img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    #brands-scroll {
        margin-top: -50px;
        margin-bottom: 40px;
    }
    
    .scroll-container {
        padding: 15px 0;
        overflow: hidden;
        gap:10px;
    }
    
    .logo-item {
        min-width: 130px;
        height: 80px;
    }
    
    .logo-item img {
        max-width: 100px;
        height: 50px;
    }
}

/* About Section */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.about-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat {
    flex: 0 0 calc(33.333% - 20px);
    text-align: center;
    margin-bottom: 2rem;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--red);
}

/* Services Section */
#services {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--red);
}

/* Influencers Section */
.influencer-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 3rem;
}

.category {
    background-color: var(--black);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: 5px;
}

.category h3 {
    margin-bottom: 0.5rem;
}

.platform-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 2rem;
}

.platform {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.platform:hover {
    transform: translateY(-5px);
}

.platform i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--red);
}

/* Responsive styles for platform icons */
@media (max-width: 768px) {
    .platform-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .platform {
        width: 100%;
        max-width: 200px;
        margin-bottom: 1rem;
    }
}

/* Brands Section */
#brands {
    background-color: var(--light-gray);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand {
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    min-height: 150px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.brand:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial {
    text-align: center;
    padding: 2rem;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.client h4 {
    color: var(--red);
    margin-bottom: 0.5rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: var(--dark-gray);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--red);
}

/* Contact Section */
#contact {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: start;
}

.contact-info {
    max-width: 100%;
    word-wrap: break-word;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.info-item i {
    font-size: 1.2rem;
    margin-right: 0.8rem;
    color: var(--red);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.info-item p {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.95rem;
    flex: 1;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.info-item.address-item p {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.social-icons {
    display: flex;
    margin-top: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-gray);
    color: var(--white);
    border-radius: 50%;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-icons a i {
    font-size: 1.2rem;
    color: var(--white);
}

.social-icons a:hover {
    background-color: var(--red);
    transform: translateY(-5px);
}

.contact-form {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

.contact-form iframe {
    border: none;
    max-width: 100%;
    display: block;
    background-color: transparent;
}

@media (max-width: 992px) {
    .contact-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        padding: 0 10px;
    }
    
    .info-item {
        max-width: 100%;
        align-items: flex-start;
    }
    
    .info-item i {
        margin-top: 0.25rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
    
    /* Make sure address text properly wraps */
    .info-item.address-item p {
        white-space: normal;
        overflow: visible;
        display: inline;
        max-height: none;
        -webkit-line-clamp: initial;
        line-clamp: initial;
    }
    
    .contact-form {
        padding: 0.5rem;
    }
    
    .contact-form iframe {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .contact-form iframe {
        height: 550px;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
    
    /* Remove any truncation for address on small screens */
    .info-item.address-item p {
        max-width: 100%;
        display: inline;
        -webkit-line-clamp: initial;
        line-clamp: initial;
        -webkit-box-orient: initial;
        overflow: visible;
        white-space: normal;
    }
}

/* Influencers Page Specific Styles */
#influencers-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    background-color: var(--black);
    color: var(--black);
    padding-top: 80px;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    border: 2px solid var(--black);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--red);
}

.category-card h3 {
    color: var(--red);
    margin-bottom: 0.5rem;
}

/* Platforms Section */
#platforms {
    background-color: var(--light-gray);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.platform-card {
    background-color: var(--white);
    padding: 2rem;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.platform-card i {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.platform-card h3 {
    margin-bottom: 0.5rem;
}

/* Tiers Section */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tier-card {
    background-color: var(--white);
    border: 2px solid var(--black);
    padding: 2rem;
    text-align: center;
}

.tier-card h3 {
    color: var(--red);
    margin-bottom: 0.5rem;
}

.tier-card .followers {
    font-weight: 800;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.tier-card ul {
    list-style: none;
    text-align: left;
}

.tier-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tier-card li:before {
    content: "•";
    color: var(--red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Campaigns Section */
#campaigns {
    background-color: var(--light-gray);
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.campaign-card {
    background-color: var(--white);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.campaign-card h3 {
    color: var(--red);
    margin-bottom: 1rem;
}

/* CTA Section */
#influencer-cta {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

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

.footer-links li {
    margin-left: 2rem;
}

.footer-links a {
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--red);
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-wrapper {
        flex-direction: column;
        padding-top: 80px;
    }
    
    .hero-content, .hero-image {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }
    
    .hero-content h1, .hero-content p {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 30px;
        order: 2;
    }
    
    .hero-image img {
        max-width: 80%;
    }
    
    .services-grid,
    .influencer-categories,
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    p {
        font-size: 1.2rem;
    }
    
    .hero-wrapper {
        padding-top: 70px;
        margin-bottom: 20px;
    }
    
    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 1.5rem;
        font-weight: 900;
        text-transform: none;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 2.5rem;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .hero-image img {
        max-width: 90%;
        max-height: 300px;
    }
    
    .scroll-container {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 15px 0;
        position: relative;
        z-index: 100;
    }
    
    .logo-item {
        min-width: 150px;
        height: 80px;
    }
    
    .logo-item img {
        max-width: 100px;
        height: 50px;
    }
    
    .btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 2rem;
        font-size: 1.2rem;
    }
    
    .services-grid,
    .influencer-categories,
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 1.5rem;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .footer-links li {
        margin: 0 1rem 1rem;
    }
    
    .footer-links a {
        font-size: 1.1rem;
    }
    
    .footer-social {
        margin-top: 1.5rem;
    }
    
    .footer-social a {
        font-size: 1.8rem;
    }
    
    #about {
        margin-top: 20px;
        padding-top: 40px;
        position: relative;
        z-index: 1;
    }
    
    #hero {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .scroll-container {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 15px 0;
        position: absolute;
        bottom: 0;
        z-index: 100;
    }
    
    #about {
        position: relative;
        z-index: 1;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-wrapper {
        padding-top: 60px;
        margin-bottom: 15px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.15;
        letter-spacing: -0.02em;
        margin-bottom: 1.2rem;
        font-weight: 900;
        text-transform: none;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-image {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .hero-image img {
        max-width: 90%;
        max-height: 250px;
    }
    
    .scroll-container {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 12px 0;
        margin-bottom: 20px;
        position: relative;
        z-index: 100;
    }
    
    .logo-item {
        min-width: 130px;
        height: 70px;
    }
    
    .logo-item img {
        height: 50px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .stat {
        flex: 0 0 100%;
    }
    
    .stat h3 {
        font-size: 2.5rem;
    }
    
    .stat p {
        font-size: 1.2rem;
    }
    
    .mobile-menu a {
        font-size: 1.6rem;
    }
    
    #about {
        margin-top: 20px;
        padding-top: 30px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .stat {
        flex: 0 0 100%;
    }
    
    .stat h3 {
        font-size: 2.5rem;
    }
    
    .stat p {
        font-size: 1.2rem;
    }
    
    .mobile-menu a {
        font-size: 1.6rem;
    }
}

@media (max-width: 400px) {
    .hero-wrapper {
        padding-top: 50px;
        margin-bottom: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.15;
        letter-spacing: -0.01em;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        margin: 15px 0;
    }
    
    .hero-image img {
        max-width: 85%;
        max-height: 200px;
    }
    
    #about {
        padding-top: 40px;
        margin-top: 0;
    }
    
    .logo-item {
        min-width: 120px;
        height: 60px;
    }
    
    .logo-item img {
        height: 45px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .btn {
        width: 80%;
        max-width: 300px;
        padding: 15px 0;
        text-align: center;
    }
    
    .logo img {
        height: 22px;
    }
    
    .mobile-menu {
        width: 85%;
    }
}

@media (max-height: 700px) {
    .mobile-menu-footer {
        position: relative;
        margin-top: 3rem;
        bottom: auto;
    }
}

/* Media Queries for Influencers Page */
@media (max-width: 992px) {
    .categories-grid,
    .campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platforms-grid,
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid,
    .platforms-grid,
    .tiers-grid,
    .campaigns-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Ensure proper aspect ratios in mobile */
    #hero {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    /* City Search Responsive Styles */
    .city-search-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    #city-search {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    /* City Search Responsive Styles for small devices */
    .city-search-grid {
        grid-template-columns: 1fr;
    }
    
    .city-card {
        height: 200px;
    }
    
    .city-info h3 {
        font-size: 1.3rem;
    }
}

/* Additional Mobile Optimizations - continuation */
@media (max-width: 768px) {
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Enhance mobile menu experience */
    .mobile-menu {
        padding-top: 5rem;
    }
    
    .mobile-menu a {
        font-size: 1.3rem;
    }
    
    /* Improve card layouts on mobile */
    .service-card, 
    .category-card, 
    .platform-card, 
    .campaign-card,
    .tier-card {
        padding: 1.5rem;
    }
    
    /* Make sure images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Mobile form improvements */
    input, textarea, button {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
    }
    
    /* Better spacing on mobile */
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    #hero {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    #brands-scroll {
        padding: 0;
        margin-bottom: 20px;
        display: block;
    }
    
    .scroll-container {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 15px 0;
        position: relative;
        z-index: 100;
    }
    
    #about {
        padding-top: 40px;
        margin-top: 0;
    }
}
