/* ========================================
   SOCIALUAPP - MAIN STYLESHEET
   Fixed for Mobile Display Issues
   ======================================== */

/* ========================================
   UNIVERSAL BOX-SIZING & RESET
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* CSS-only sticky footer fix */
body > *:not(footer) {
    flex-shrink: 0;
}

body > footer {
    margin-top: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER NAVIGATION
   ======================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: transform 0.3s;
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.header-nav a:not(.btn-nav):hover {
    color: #667eea;
}

.header-nav a:not(.btn-nav).active {
    color: #667eea;
    font-weight: 600;
}

.header-nav a:not(.btn-nav).active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.btn-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION - ORIGINAL DESIGN
   Two-column grid with phone mockup
   ======================================== */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 40px 60px;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
    background: linear-gradient(120deg, #fff 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}

/* ========================================
   BLOG PREVIEW SECTION
   ======================================== */
.blog-preview-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.blog-preview-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.blog-preview-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-preview-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.1);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.blog-category-badge.food {
    background: rgba(255, 107, 107, 0.9);
    color: white;
}

.blog-category-badge.activities {
    background: rgba(74, 144, 226, 0.9);
    color: white;
}

.blog-category-badge.culture {
    background: rgba(245, 166, 35, 0.9);
    color: white;
}

.blog-category-badge.tips {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.blog-category-badge.nightlife {
    background: rgba(156, 39, 176, 0.9);
    color: white;
}

.blog-category-badge.budget {
    background: rgba(0, 191, 165, 0.9);
    color: white;
}

.blog-preview-content {
    padding: 25px;
}

.blog-preview-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.4;
}

.blog-preview-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.blog-read-time {
    color: #999;
    font-size: 0.85rem;
}

.blog-read-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.3s;
    display: inline-block;
}

.blog-read-link:hover {
    transform: translateX(3px);
}

.blog-preview-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.blog-preview-subtext {
    margin-top: 15px;
    color: #999;
    font-size: 0.9rem;
}

/* ========================================
   PHONE MOCKUP (ORIGINAL VERSION)
   ======================================== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-stack {
    position: relative;
    width: 340px;
    height: 700px;
}

.phone-mockup {
    width: 340px;
    height: 700px;
    background: #1a1a1a;
    border-radius: 50px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    position: absolute;
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-2deg); }
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

/* App UI Inside Phone */
.app-ui {
    padding: 60px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    text-align: center;
    color: white;
    margin-bottom: 24px;
}

.app-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.app-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.app-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    animation: slideCard 0.5s ease forwards;
    opacity: 0;
}

.app-card:nth-child(1) { animation-delay: 0.2s; }
.app-card:nth-child(2) { animation-delay: 0.4s; }
.app-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideCard {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.card-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.card-info p {
    font-size: 0.8rem;
    color: #666;
}

.card-body {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 12px;
}

.card-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #667eea;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.app-nav {
    display: flex;
    justify-content: space-around;
    padding: 20px 0 10px;
    background: rgba(255,255,255,0.95);
    border-radius: 25px 25px 0 0;
    margin-top: auto;
}

.nav-icon {
    font-size: 1.6rem;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.nav-icon.active {
    opacity: 1;
}

/* ========================================
   ADDITIONAL HOMEPAGE SECTIONS
   ======================================== */

/* Social Proof Banner */
.social-proof-banner {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    padding: 20px 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.proof-item {
    text-align: center;
    color: white;
}

.proof-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.proof-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Features Section */
.features-section {
    background: white;
    padding: 80px 60px;
}

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

.feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 32px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* Business CTA Section */
.business-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0; /* Changed from 80px 60px to 80px 0 */
    position: relative;
    overflow: hidden;
}

.business-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15), transparent);
    top: -250px;
    right: -250px;
}

.business-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 60px; /* Added padding here instead */
}

.business-info h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 900;
}

.business-info p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95); /* Changed from 0.8 to 0.95 for better readability */
    margin-bottom: 16px;
    line-height: 1.6;
}

.business-benefits {
    list-style: none;
    margin: 24px 0;
}

.business-benefits li {
    color: white;
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
    font-size: 1.05rem;
}

.business-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f093fb;
    font-weight: 800;
    font-size: 1.3rem;
}

/* Contact Form */
.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.success-message {
    display: none;
    background: #4caf50;
    color: white;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
    padding: 80px 0; /* Changed from 80px 60px */
}

.testimonial-slider {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 60px; /* Added padding here */
}

.testimonial {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #667eea;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info h4 {
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 700;
}

.author-info p {
    color: #999;
    font-size: 0.85rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 100px 0; /* Changed from 100px 60px */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1), transparent);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 60px; /* Added padding here */
}

.final-cta h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 900;
}

.final-cta p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 60px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 60px; /* Added */
    padding-right: 60px; /* Added */
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ========================================
   OVERLAY & FORM STYLES
   ======================================== */
.overlay-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.overlay-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.overlay-content h2 {
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

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

/* Override for dark backgrounds (business form) */
.contact-form .form-group label,
.business-cta .form-group label {
    color: white !important;
    opacity: 1 !important;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

/* Override for dark backgrounds (business form) */
.contact-form .form-group input,
.contact-form .form-group textarea,
.business-cta .form-group input,
.business-cta .form-group textarea {
    border: 2px solid rgba(255,255,255,0.3) !important;
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder,
.business-cta .form-group input::placeholder,
.business-cta .form-group textarea::placeholder {
    color: rgba(255,255,255,0.7) !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

/* Focus state for dark backgrounds */
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.business-cta .form-group input:focus,
.business-cta .form-group textarea:focus {
    border-color: #667eea !important;
    background: rgba(255,255,255,0.15) !important;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-actions button {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-cancel {
    background: #f0f0f0;
    color: #666;
}

.btn-cancel:hover {
    background: #e0e0e0;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }

    .hero {
        padding: 100px 40px 60px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .blog-preview-section {
        padding: 80px 30px;
    }

    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .business-content {
        padding: 0 30px; /* Tablet padding */
    }

    .testimonial-slider {
        padding: 0 30px; /* Tablet padding */
    }

    .final-cta-content {
        padding: 0 30px; /* Tablet padding */
    }

    footer {
        padding: 40px 0 20px; /* Changed */
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 30px; /* Tablet padding */
    }

    .footer-bottom {
        padding-left: 30px; /* Tablet padding */
        padding-right: 30px; /* Tablet padding */
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .container {
        padding: 0 20px;
    }

    /* Header Mobile */
    .header-container {
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        z-index: 999;
    }

    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .header-nav a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .header-nav a:last-child {
        border-bottom: none;
    }

    .btn-nav {
        margin-top: 10px;
        display: block;
        text-align: center;
    }

    /* Hero Mobile - Single Column */
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 20px 60px;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    .hero-stats {
        gap: 24px;
        margin: 30px 0;
        justify-content: center;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 12px;
        margin-top: 32px;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    /* Hide Phone Mockup on Mobile */
    .hero-visual {
        display: none;
    }

    /* Social Proof Mobile */
    .social-proof-banner {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    /* Features Mobile */
    .features-section {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Business CTA Mobile */
    .business-cta {
        padding: 60px 0; /* Changed from 60px 20px */
    }

    .business-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px; /* Mobile padding */
    }

    .business-info h2 {
        font-size: 2rem;
    }

    .business-info p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

    /* Testimonials Mobile */
    .testimonials {
        padding: 60px 0; /* Changed from 60px 20px */
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px; /* Mobile padding */
    }

    /* Final CTA Mobile */
    .final-cta {
        padding: 60px 0; /* Changed from 60px 20px */
    }

    .final-cta-content {
        padding: 0 20px; /* Mobile padding */
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

    .final-cta p {
        font-size: 1.1rem;
    }

    /* Blog Section Mobile */
    .section-header h2 {
        font-size: 2rem;
    }

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

    .blog-preview-section {
        padding: 60px 20px;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Footer Mobile */
    footer {
        padding: 40px 0 20px; /* Changed from 40px 20px 20px */
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 20px; /* Mobile padding */
    }

    .footer-bottom {
        padding-left: 20px; /* Mobile padding */
        padding-right: 20px; /* Mobile padding */
    }

    .footer-section a {
        display: inline-block;
        margin: 0 10px 10px;
    }

    /* Overlay & Form Mobile */
    .overlay-screen {
        padding: 20px 10px;
    }

    .overlay-content {
        padding: 30px 20px;
        width: 95%;
        max-width: 100%;
    }

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

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 12px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions button {
        width: 100%;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

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

    .overlay-content {
        padding: 25px 15px;
        width: 100%;
        border-radius: 20px 20px 0 0;
        margin: auto 0 0 0;
    }

    footer {
        padding: 30px 15px 15px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.no-scroll {
    overflow: hidden;
}
