/* Be Seen Advertising - Landing Page Styles */

:root {
    --primary-yellow: #ef4444;
    --primary-dark: #000000;
    --secondary-dark: #000000;
    --light-bg: #000000;
    --white: #000000;
    --text-dark: #ffffff;
    --text-light: #a0a0a0;
    --blue-accent: #ef4444;
    --border-color: #333333;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff !important;
    background-color: #000000 !important;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

html {
    background-color: #000000 !important;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent any navigation overlays on mobile */
@media (max-width: 768px) {
    body::before,
    body::after {
        content: none !important;
    }
}

/* Typography */
h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 0.75rem;
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sections */
section {
    position: relative;
    display: block;
    clear: both;
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

/* Global Header */
.global-header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.global-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.global-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    max-width: 1400px;
}

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

.global-header .logo img {
    height: 48px;
    width: auto;
}

.global-header .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.desktop-nav .nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.desktop-nav .nav-link:hover {
    color: #ef4444;
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ef4444;
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(239, 68, 68, 0.8);
}

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

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown .dropdown-arrow {
    transition: transform 0.2s ease;
    width: 14px;
    height: 14px;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ffffff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.mobile-menu-btn:hover {
    color: #ef4444;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 9998;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.mobile-nav .nav-link:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.mobile-dropdown-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    color: #d1d5db;
    background: none;
    border: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-transform: uppercase;
    font-family: inherit;
}

.mobile-dropdown-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.mobile-dropdown-btn .dropdown-arrow {
    transition: transform 0.2s ease;
}

.mobile-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    background: rgba(20, 20, 20, 0.9);
    border-left: 2px solid rgba(239, 68, 68, 0.3);
    margin-left: 1rem;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.mobile-dropdown-menu a:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Responsive */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Add padding to body for fixed header */
body {
    padding-top: 64px;
}

/* Old header - hide */
.header {
    display: none;
}

/* Prevent z-index stacking issues */
.faq-section {
    position: relative;
    z-index: 10;
}

.faq-section * {
    position: relative;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a0505 50%, #000000 100%);
    padding: 4rem 0 8rem 0;
    position: relative;
    margin-bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 span {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

.hero-image {
    background: #1a1a1a;
    height: 280px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.hero .btn-secondary {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid #444444;
}

.btn-secondary-white:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.btn-blue {
    background: #ef4444;
    color: #000000;
}

.btn-blue:hover {
    background: #dc2626;
    color: #000000;
}

/* Features Section */
.features {
    padding: 3.5rem 0 4.5rem 0;
    background: #000000;
    position: relative;
    clear: both;
}

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

.section-header h2 {
    color: #ffffff;
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: #a0a0a0;
    max-width: 750px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1150px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(20, 20, 20, 0.8);
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #ef4444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    font-size: 2rem;
    border: none;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #a0a0a0;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background: #000000;
    position: relative;
    clear: both;
}

.benefits + .content-section,
.benefits + .process-section {
    padding-top: 18rem;
    background: #000000;
    margin-top: -14rem;
}

.process-section {
    background: #000000;
    padding: 4rem 0;
    padding-bottom: 5rem;
    position: relative;
    clear: both;
    min-height: 500px;
}

.process-card {
    background: transparent;
    padding: 0;
}

.process-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #ef4444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.content-section:nth-child(even) {
    background: #000000;
}

.content-section.about-with-cta {
    background: #000000;
    padding: 0;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.content-section.about-with-cta .container {
    background: #1a1a1a;
    padding: 3rem 3rem;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.4);
    border: 1px solid #333;
}

.content-section.about-with-cta .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.content-text h2 {
    color: #ffffff;
    font-size: 1.65rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.content-text-desc {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.icon-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.icon-box-icon {
    width: 50px;
    height: 50px;
    background: #ef4444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.icon-box-content {
    flex: 1;
}

.icon-box-content h3 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.icon-box-content p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.content-text-button {
    margin-top: 2rem;
}

.content-text-button .btn {
    width: 100%;
    max-width: 280px;
}

.combined-services-section {
    background: #000000;
    padding: 3.5rem 0 4rem 0;
    position: relative;
    clear: both;
    margin-top: 4rem;
}

.text-content-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
    padding-bottom: 2.5rem;
    margin-bottom: 3rem;
}

.text-content-left h2 {
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.3;
}

.text-content-right p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Services Cards Grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(20, 20, 20, 0.8);
    padding: 2rem 1.75rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
}

.service-card-image {
    width: 100%;
    height: 160px;
    background: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333333;
    background-size: cover;
    background-position: center;
}

.service-card:nth-child(1) .service-card-image {
    background-image: url('images/digital-ad-van.jpg');
}

.service-card:nth-child(2) .service-card-image {
    background-image: url('images/digitaladvans.jpeg');
}

.service-card:nth-child(3) .service-card-image {
    background-image: url('images/digital-advans.jpeg');
}

.service-card:nth-child(4) .service-card-image {
    background-image: url('images/mobile-vs-traditional.jpeg');
}

.service-card:nth-child(5) .service-card-image {
    background-image: url('images/audience-engagement.jpg');
}

.service-card:nth-child(6) .service-card-image {
    background-image: url('images/van-dimentions.jpg');
}

.service-card-image:before {
    content: "";
    font-size: 3rem;
    opacity: 0.3;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #a0a0a0;
}

/* Services Buttons */
.services-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
}

.content-grid > * {
    min-width: 0;
    overflow: visible;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text {
    position: relative;
    display: flex;
    flex-direction: column;
    grid-column: 1;
    width: 100%;
    max-width: 100%;
}

.content-text h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.65rem;
}

.content-text h3 {
    color: #ffffff;
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.content-text h3:first-of-type {
    margin-top: 0;
}

.content-text > p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.content-list {
    list-style: none;
    margin: 1.25rem 0;
}

.content-list li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.content-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
}

.content-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    grid-column: 2;
}

.content-image {
    background: #2a2a2a;
    height: 350px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.85rem;
    border: 2px solid #333333;
    position: relative;
    padding: 1rem;
}

.content-image:before {
    content: "";
    display: none;
}

.content-image:after {
    content: "Campaign Process";
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
}

/* Images Row Section */
.images-row-section {
    padding: 3.5rem 0;
    background: #000000;
    border-bottom: 1px solid #222222;
}

.images-row-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.images-row-header h2 {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
}

.images-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.image-item {
    background: #2a2a2a;
    height: 80px;
    border-radius: 8px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.images-row .image-item:nth-child(1) {
    background-image: url('images/digital-ad-van.jpg');
}

.images-row .image-item:nth-child(2) {
    background-image: url('images/digitaladvans.jpeg');
}

.images-row .image-item:nth-child(3) {
    background-image: url('images/digital-advans.jpeg');
}

.images-row .image-item:nth-child(4) {
    background-image: url('images/mobile-vs-traditional.jpeg');
}

.images-row .image-item:nth-child(5) {
    background-image: url('images/audience-engagement.jpg');
}

.images-row .image-item:nth-child(6) {
    background-image: url('images/van-dimentions.jpg');
}

.image-item:before {
    content: "";
    font-size: 2rem;
    opacity: 0.3;
}

/* Benefits Section */
.benefits {
    padding: 4.5rem 0;
    padding-bottom: 13rem;
    background: linear-gradient(135deg, #000000 0%, #1a0505 50%, #000000 100%);
    color: #ffffff;
    position: relative;
    clear: both;
    z-index: 1;
    overflow: visible;
    width: 100%;
    max-width: 100vw;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 0rem;
    padding: 0 20px;
    box-sizing: border-box;
}

.benefits-header h2 {
    color: #ffffff;
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefits-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto -11rem auto;
    position: relative;
    z-index: 100;
    width: calc(100% - 40px);
    box-sizing: border-box;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.4);
    transition: all 0.3s;
    position: relative;
    z-index: 100;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
}

.benefit-icon {
    width: 65px;
    height: 65px;
    background: #ef4444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.benefit-item h3 {
    color: #ffffff;
    margin-bottom: 0.85rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.benefit-item p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    clear: both;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #333333;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
    background: #1a1a1a;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}

.faq-question {
    background: transparent;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-size: 0.95rem;
}

.faq-question:hover {
    background: #2a2a2a;
}

.faq-answer {
    padding: 1.25rem 1.5rem;
    background: #2a2a2a;
    display: none;
    border-top: 1px solid #333333;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.9rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ef4444;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Four Cards Section */
.four-cards-section {
    padding: 4rem 0;
    background: #000000;
}

.four-cards-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
}

.four-cards-header h2 {
    color: #ffffff;
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.four-cards-header p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.7;
}

.four-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1150px;
    margin: 0 auto;
}

.four-card-item {
    background: rgba(20, 20, 20, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.four-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
}

.four-card-icon {
    width: 65px;
    height: 65px;
    background: #ef4444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.four-card-item h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.four-card-item p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #a0a0a0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--primary-dark);
    background-image: url('images/audience-engagement.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    clear: both;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.85);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

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

.cta-left {
    text-align: left;
}

.cta-left h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

.cta-right {
    display: flex;
    justify-content: flex-end;
}

.cta-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
}

.cta-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

.cta-buttons-inline {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.cta-buttons-inline .btn {
    flex: 0 0 auto;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
}

.cta-left .btn {
    background: #ef4444;
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
}

.cta-left .btn:hover {
    background: #17a8c9;
    color: var(--white);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    border-width: 2px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #000000;
    position: relative;
    clear: both;
}

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

.faq-section .section-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

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

.faq-item {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: box-shadow 0.3s;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span:first-child {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: #ef4444;
    font-weight: 400;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: #000000;
    position: relative;
}

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

.reviews-section .section-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.reviews-section .section-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #333;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
}

.review-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.review-content p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.review-footer {
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.review-rating {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.review-author strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.review-author span {
    color: #666;
    font-size: 0.85rem;
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 0;
    background: #000000;
    position: relative;
}

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

.contact-section .section-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-section .section-header p {
    color: #a0a0a0;
    font-size: 1.05rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.9);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

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

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    cursor: pointer;
    border: none;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* New Global Footer */
.global-footer {
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    position: relative;
    z-index: 10;
}

.global-footer .footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.global-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 0;
}

.global-footer .footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.global-footer .footer-column.about-col p {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.global-footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.global-footer .footer-column a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.global-footer .footer-column a:hover {
    color: #ef4444;
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
}

.global-footer .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-size: 0.9rem;
}

.global-footer .contact-item svg {
    width: 16px;
    height: 16px;
    color: #ef4444;
    flex-shrink: 0;
}

.global-footer .contact-address {
    font-size: 0.85rem;
    color: #d1d5db;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.global-footer .social-links {
    display: flex;
    gap: 0.75rem;
}

.global-footer .social-link {
    width: 40px;
    height: 40px;
    background: rgba(127, 29, 29, 0.3);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.global-footer .social-link:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
}

.global-footer .social-link svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.global-footer .social-link:hover svg {
    color: #ef4444;
    filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.8));
}

.global-footer .footer-bottom {
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .global-footer .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.global-footer .footer-bottom p {
    color: #9ca3af;
    font-size: 0.85rem;
    margin: 0;
}

.global-footer .footer-links {
    display: flex;
    gap: 1.5rem;
}

.global-footer .footer-links a {
    color: #9ca3af;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.global-footer .footer-links a:hover {
    color: #ef4444;
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
}

@media (max-width: 1024px) {
    .global-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .global-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .global-footer .footer-content {
        padding: 3rem 1rem;
    }
}

/* Old Footer - hide */
.footer {
    display: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding: 3rem 0 4rem 0;
    }

    .hero-image {
        height: 300px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .features-grid,
    .benefits-grid,
    .four-cards-grid,
    .cta-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-grid {
        gap: 2.5rem;
    }

    .reviews-grid {
        gap: 1.5rem;
    }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .images-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .text-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.65rem;
    }

    .content-section,
    .benefits,
    .four-cards-section,
    .process-section,
    .images-row-section,
    .combined-services-section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 30px;
    }

    .content-section.about-with-cta .container {
        padding: 2.5rem 2rem;
    }

    .benefits {
        padding: 3rem 0;
        padding-bottom: 11rem;
    }

    .benefits-grid {
        margin-bottom: -9rem;
    }

    .benefits + .content-section,
    .benefits + .process-section {
        padding-top: 16rem;
        margin-top: -12rem;
    }
}

@media (max-width: 768px) {
    .header .nav,
    .header nav,
    nav.nav {
        display: none !important;
        visibility: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }

    .logo {
        font-size: 1.35rem;
    }

    /* Force native selects on mobile - prevent custom overlays */
    select {
        appearance: auto !important;
        -webkit-appearance: menulist !important;
        -moz-appearance: menulist !important;
        background-image: none !important;
    }

    /* Prevent any dropdown overlays */
    body::after,
    body::before,
    .faq-section::after,
    .faq-section::before {
        content: none !important;
        display: none !important;
    }

    /* Hide any positioned overlays */
    [style*="position: fixed"],
    [style*="position: absolute"][style*="z-index"] {
        z-index: auto !important;
    }
}

@media (max-width: 640px) {
    .features-grid,
    .benefits-grid,
    .footer-grid,
    .four-cards-grid,
    .cta-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        gap: 2.5rem;
    }

    .cta-left h2 {
        font-size: 1.75rem;
    }

    .cta-left p {
        font-size: 1rem;
    }

    .cta-box {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.25rem;
    }

    .reviews-grid {
        gap: 1.25rem;
    }

    .review-card {
        padding: 1.5rem 1.35rem;
    }

    .review-content {
        margin-bottom: 1.25rem;
    }

    .review-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .review-author strong {
        font-size: 0.95rem;
    }

    .review-author span {
        font-size: 0.8rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 1.75rem 1.25rem;
    }

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

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.95rem;
    }

    .nav,
    nav,
    .header nav {
        display: none !important;
        visibility: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }

    .container {
        padding: 0 20px;
    }

    .content-section.about-with-cta .container {
        padding: 2rem 1.5rem;
        margin-top: 0;
    }

    .content-text h2 {
        font-size: 1.35rem;
        margin-bottom: 0.85rem;
    }

    .content-text-desc {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .content-section.about-with-cta .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-card {
        padding: 0;
    }

    .process-card .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-right {
        gap: 1.5rem;
    }

    .text-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .images-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    h1 {
        font-size: 1.65rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1rem;
    }

    .hero {
        padding: 2rem 0 3rem 0;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content h1 {
        font-size: 1.65rem;
        line-height: 1.25;
        margin-bottom: 0.85rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.85rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-image,
    .content-image {
        height: 220px;
    }

    .content-section,
    .features {
        padding: 2.5rem 0;
    }

    .faq-section,
    .reviews-section {
        padding: 2.5rem 0;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .four-cards-section,
    .process-section,
    .combined-services-section {
        padding: 2.5rem 0;
    }

    .images-row-section {
        padding: 2.25rem 0;
    }

    .benefits {
        padding: 2rem 0;
        padding-bottom: 9rem;
    }

    .benefits-header {
        margin-bottom: 0.5rem;
    }

    .benefits-header h2 {
        font-size: 1.35rem;
        margin-bottom: 0.35rem;
    }

    .benefits-header p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .benefits-grid {
        gap: 1.25rem;
        margin-bottom: -7rem;
    }

    .benefits + .content-section,
    .benefits + .process-section {
        padding-top: 13rem;
        margin-top: -10rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2,
    .images-row-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .images-row-header {
        margin-bottom: 1.75rem;
    }

    .four-cards-header,
    .combined-services-section .section-header {
        margin-bottom: 2rem;
    }

    .faq-list {
        padding: 0;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-question span:first-child {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    /* Icon boxes mobile */
    .icon-box {
        flex-direction: row;
        gap: 1rem;
    }

    .icon-box-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .icon-box-content h3 {
        font-size: 1rem;
    }

    .icon-box-content p {
        font-size: 0.9rem;
    }

    /* Process steps mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        text-align: left;
    }

    /* Service cards mobile */
    .service-card {
        padding: 1.5rem 1.35rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.65rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .services-cards-grid {
        margin-bottom: 2rem;
    }

    .services-buttons {
        margin-top: 1.75rem;
    }

    /* Four cards mobile */
    .four-card-item {
        padding: 1.5rem 1.35rem;
    }

    .four-card-icon {
        font-size: 2rem;
        margin-bottom: 0.85rem;
    }

    .four-card-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.65rem;
    }

    .four-card-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Benefits cards mobile */
    .benefit-item {
        padding: 1.75rem 1.5rem;
    }

    .benefit-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.65rem;
    }

    .benefit-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }

    /* CTA buttons inline mobile */
    .cta-buttons-inline {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons-inline .btn {
        width: 100%;
        text-align: center;
    }

    .content-text-button {
        margin-top: 1.5rem;
    }

    .content-text-button .btn {
        width: 100%;
        text-align: center;
    }

    /* Services buttons mobile */
    .services-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .services-buttons .btn {
        width: 100%;
    }

    /* CTA section mobile */
    .cta-section {
        padding: 3rem 0;
    }

    .cta-left .btn {
        width: 100%;
        text-align: center;
    }

    /* Footer mobile */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-column p,
    .footer-column a {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }

    /* Force native mobile select */
    .form-group select {
        appearance: menulist !important;
        -webkit-appearance: menulist !important;
        -moz-appearance: menulist !important;
        background: white !important;
        position: static !important;
    }

    .feature-card,
    .benefit-item {
        padding: 1.5rem 1.25rem;
    }

    .header {
        padding: 1rem 0;
    }

    .header {
        padding: 0.85rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .header .container {
        padding: 0 20px;
    }

    /* Additional overlay prevention for small screens */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Ensure FAQ is on top */
    .faq-list {
        position: relative !important;
        z-index: 999 !important;
        overflow: visible !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .hero {
        padding: 1.75rem 0 2.5rem 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .content-section.about-with-cta .container {
        padding: 1.75rem 1.25rem;
    }

    .icon-box {
        gap: 0.85rem;
    }

    .icon-box-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .images-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .images-row-item {
        height: 120px;
    }

    .images-row-section {
        padding: 2rem 0;
    }

    .images-row-header {
        margin-bottom: 1.5rem;
    }

    .images-row-header h2 {
        font-size: 1.15rem;
    }

    .benefits {
        padding: 1.75rem 0;
        padding-bottom: 8rem;
    }

    .benefits-header {
        margin-bottom: 0.35rem;
    }

    .benefits-header h2 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .benefits-header p {
        font-size: 0.85rem;
        padding: 0 0.35rem;
    }

    .benefits-grid {
        gap: 1rem;
        margin-bottom: -6rem;
    }

    .benefits + .content-section,
    .benefits + .process-section {
        padding-top: 12rem;
        margin-top: -9rem;
    }

    .benefit-item,
    .service-card,
    .four-card-item {
        padding: 1.5rem 1.25rem;
    }

    .benefit-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-item p {
        font-size: 0.85rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .combined-services-section,
    .four-cards-section,
    .process-section {
        padding: 2rem 0;
    }

    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-left h2 {
        font-size: 1.35rem;
    }

    .cta-left p {
        font-size: 0.9rem;
    }

    .cta-box {
        padding: 1.5rem 1.25rem;
    }

    .cta-box h3 {
        font-size: 1.15rem;
    }

    .cta-box p {
        font-size: 0.85rem;
    }

    .review-card {
        padding: 1.25rem;
    }

    .reviews-section {
        padding: 2rem 0;
    }

    .faq-section {
        padding: 2rem 0;
    }

    .faq-question {
        padding: 0.85rem 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 0.85rem 1rem;
    }

    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-section .section-header h2 {
        font-size: 1.35rem;
    }

    .contact-section .section-header p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

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

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
    }

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

    .contact-form .btn {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }

    .footer {
        padding: 2rem 0 1.25rem;
    }

    .footer-column h3 {
        font-size: 1rem;
    }

    .footer-column p,
    .footer-column a {
        font-size: 0.85rem;
    }
}
