* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #e8d5f2 0%, #d4c5e8 50%, #f5e6d3 100%);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Prevent all sections from causing horizontal scroll */
section {
    max-width: 100vw;
    overflow-x: hidden;
    width: 100%;
}

/* Container responsive fix */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: white;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 60px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    width: 350px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 18px;
    color: #333;
}

.logo-text strong {
    font-weight: bold;
}

.tagline {
    font-size: 9px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.btn-quote {
    background-color: #ff6b35;
    color: white !important;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
}

.btn-quote:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    max-width: 100vw;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    overflow-x: hidden;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Text */
.hero-text {
    padding-right: 40px;
}

.hero-title {
    font-size: clamp(28px, 5vw, 58px);
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 800;
}

.title-line2 {
    font-weight: 800;
}

.title-highlight {
    color: #ff6b35;
    font-weight: 800;
}

.hero-description {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
    font-weight: 400;
}

.btn-get-started {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 16px 45px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-get-started:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Right Side - Form */
.form-container {
    background-color: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.phone-input,
.budget-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.phone-input:focus-within,
.budget-input:focus-within {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.country-code,
.currency {
    background-color: #f5f5f5;
    padding: 16px;
    font-size: 15px;
    color: #666;
    border-right: 1px solid #ddd;
    font-weight: 500;
}

.phone-input input,
.budget-input input {
    border: none;
    flex: 1;
}

/* Services Section */
.services-section {
    margin: 25px 0;
}

.services-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 22px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Why Digital Advertisers Section */
.why-section {
    background-color: white;
    padding: 90px 0;
    text-align: center;
}

.section-title {
    font-size: clamp(28px, 4vw, 46px);
    color: #ff6b35;
    margin-bottom: 28px;
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
}

.section-description {
    font-size: clamp(15px, 2vw, 18px);
    color: #555;
    line-height: 1.8;
    max-width: 950px;
    margin: 0 auto 55px;
    font-weight: 400;
    text-align: center;
}

.services-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.showcase-item {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #d4c5e8 0%, #c5b8e0 100%);
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 45px;
    text-align: center;
}

.stat-item {
    padding: 22px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

/* Services Section Main */
.services-section-main {
    background-color: white;
    padding: 90px 0;
}

.services-main-title {
    font-size: clamp(28px, 4vw, 46px);
    color: #ff6b35;
    text-align: center;
    margin-bottom: 22px;
    line-height: 1.3;
    font-weight: 800;
}

.services-main-description {
    font-size: clamp(15px, 2vw, 17px);
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 45px;
    line-height: 1.7;
    font-weight: 400;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #f0f0f0;
    color: #666;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.tab-btn.active {
    background-color: #ff6b35;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.tab-btn:hover {
    background-color: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 45px;
}

.service-card {
    padding: 38px 28px;
    border-radius: 18px;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.blue-card {
    background-color: #e8eaf6;
}

.peach-card {
    background-color: #ffe8dc;
}

.service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-size: 20px;
    color: #5b6b9e;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.service-card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8eaf6 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title {
    color: #1a202c;
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-section .section-description {
    color: #64748b;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 24px;
    padding: 40px;
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 24px;
    z-index: -1;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.15);
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 20px;
    color: #fbbf24;
    transition: all 0.3s ease;
}

.star.filled {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.rating-text {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.author-position {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
}

.company-logo {
    color: #667eea;
    opacity: 0.7;
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

.testimonials-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.dot:hover {
    background: rgba(102, 126, 234, 0.5);
}




/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #e8d5f2 0%, #d4c5e8 50%, #e8d5f2 100%);
    padding: 90px 0;
}

.faq-title {
    font-size: clamp(28px, 4vw, 46px);
    color: #ff6b35;
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.faq-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: #555;
    text-align: center;
    margin-bottom: 55px;
    font-weight: 400;
}

.faq-accordion {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background-color: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    color: #333;
    font-weight: 600;
    text-align: left;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    user-select: none;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question:focus {
    outline: 2px solid #ff6b35;
    outline-offset: -2px;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 22px;
}

.faq-icon {
    font-size: 30px;
    color: #ff6b35;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: white;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 28px 28px 28px;
}

.faq-answer p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    padding: 70px 0 35px;
    color: white;
}


.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr 1fr;
    gap: 45px;
}

.footer-left {
    padding-right: 25px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 220px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 320px;
    font-weight: 400;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 22px;
    font-weight: 400;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
    color: white;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    font-weight: 400;
}

.footer-links a:hover {
    color: white;
    padding-left: 6px;
    font-weight: 500;
}

.footer-social-column {
    align-items: flex-start;
}

.footer-contact-column {
    grid-column: span 2;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-text a:hover {
    color: white;
    text-decoration: underline;
}

.footer-social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.footer-credit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.credit-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 20px 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.credit-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Design */

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 58px;
    }
}

/* Desktop/Laptop (1200px - 1440px) */
@media (max-width: 1200px) {
    .logo img {
        width: 280px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .content-wrapper {
        gap: 50px;
    }
    
    .nav-menu {
        gap: 25px;
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .nav-menu {
        gap: 20px;
        font-size: 13px;
    }
    
    .logo img {
        width: 220px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .form-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-main-title {
        font-size: 36px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-left {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-logo img {
        width: 180px;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 3;
        background-color: white;
        position: fixed;
        top: 60px;
        left: 0;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap: 15px;
        z-index: 1000;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 10px;
        font-size: 14px;
    }
    
    .btn-quote {
        display: inline-block;
        width: auto;
    }
    
    .logo img {
        width: 180px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .section-description {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .why-section {
        padding: 50px 0;
    }
    
    .stats-section {
        padding: 40px 0;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .showcase-item {
        width: 120px;
        height: 120px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-main-title {
        font-size: 28px;
    }
    
    .services-main-description {
        font-size: 14px;
    }
    
    .service-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .services-section-main {
        padding: 50px 0;
    }
    

    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
    }
    
    .faq-icon {
        font-size: 24px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 25px;
    }
    
    .footer-left {
        grid-column: 1 / -1;
    }
    
    .footer-logo img {
        width: 160px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-social-column {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
}

/* Mobile Landscape (640px) */
@media (max-width: 640px) {
    .logo img {
        width: 150px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .faq-title {
        font-size: 26px;
    }
    
    .footer-logo img {
        width: 140px;
    }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .logo img {
        width: 130px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .tagline {
        font-size: 8px;
    }
    
    .nav-menu {
        gap: 10px;
        font-size: 11px;
    }
    
    .btn-quote {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .btn-get-started {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        padding: 12px;
        font-size: 13px;
    }
    
    .checkbox-label {
        font-size: 12px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 36px;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .showcase-item {
        width: 100px;
        height: 100px;
    }
    
    .why-section {
        padding: 40px 0;
    }
    
    .stats-section {
        padding: 35px 0;
    }
    
    .services-main-title {
        font-size: 24px;
    }
    
    .services-main-description {
        font-size: 13px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card-title {
        font-size: 16px;
    }
    
    .service-card-description {
        font-size: 12px;
    }
    
    .services-section-main {
        padding: 40px 0;
    }
    

    
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-subtitle {
        font-size: 13px;
    }
    
    .faq-question {
        padding: 15px 18px;
        font-size: 13px;
    }
    
    .faq-icon {
        font-size: 22px;
        width: 25px;
        height: 25px;
    }
    
    .faq-answer p {
        font-size: 12px;
        line-height: 1.7;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 20px 18px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .footer-left {
        text-align: center;
    }
    
    .footer-logo img {
        width: 130px;
    }
    
    .footer-description {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-heading {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 12px;
    }

    .footer-bottom-bar {
        margin-top: 25px;
        padding: 15px 20px 0;
    }

    .footer-bottom-text {
        font-size: 12px;
    }
}

/* Small Mobile (360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .logo img {
        width: 110px;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .nav-menu a {
        font-size: 10px;
    }
    
    .btn-quote {
        padding: 6px 15px;
        font-size: 11px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .form-container {
        padding: 20px 12px;
    }
    
    .showcase-item {
        width: 80px;
        height: 80px;
    }
    
    .faq-title {
        font-size: 20px;
    }
    
    .faq-subtitle {
        font-size: 12px;
    }
    
    .footer-logo img {
        width: 110px;
    }
    
    .footer-description {
        font-size: 11px;
    }
    
    .footer-heading {
        font-size: 11px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 22px;
    }
    
    .logo img {
        width: 100px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .btn-get-started {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .faq-title {
        font-size: 18px;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .footer-logo img {
        width: 100px;
    }
    
    .footer-description {
        font-size: 10px;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 11px;
    }

    .footer-bottom-bar {
        margin-top: 20px;
        padding: 12px 15px 0;
    }

    .footer-bottom-text {
        font-size: 11px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
}


/* ========================================
   CRITICAL RESPONSIVE FIXES - ADDED
   ======================================== */

/* Logo Responsive Scaling */
@media (max-width: 768px) {
    .logo img {
        width: 60vw !important;
        max-width: 200px !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 50vw !important;
        max-width: 150px !important;
    }
}

/* Fix Horizontal Scroll on Mobile */
@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }
    
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .hero-section,
    .why-section,
    .stats-section,
    .services-section-main,
    .faq-section,
    .footer {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .container,
    .nav-container,
    .footer-container {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .form-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    input, textarea, select, button {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Mobile Slider Touch Support */
/* Mobile Form Layout Fixes */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr !important;

        gap: 15px !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        width: 100% !important;
        min-height: 44px !important;
        padding: 15px !important;
        font-size: 16px !important;
        box-sizing: border-box !important;
    }
    
    .phone-input,
    .budget-input {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .btn-submit {
        width: 100% !important;
        min-height: 48px !important;
        font-size: 16px !important;
        padding: 16px !important;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Accessibility Improvements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #6366f1 !important;
    outline-offset: 2px !important;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 10px 20px;
    background: #6366f1;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}

/* Improve Color Contrast for Accessibility */
.hero-description,
.section-description,
.service-card-description,
.testimonial-text,
.faq-answer p {
    color: #333 !important;
}

.stat-label,
.footer-links a,
.footer-description {
    color: rgba(0, 0, 0, 0.8) !important;
}

/* ARIA Live Regions */
[aria-live="polite"],
[aria-live="assertive"] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .slider-controls,
    .btn-submit,
    .btn-get-started,
    .btn-inquire,
    .footer-social-icons {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: white;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-title,
    .section-title,
    .service-card-title {
        color: #000 !important;
    }
    
    .btn-submit,
    .btn-get-started,
    .btn-quote {
        border: 2px solid #000 !important;
    }
}
