/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Base Styles */
* {
    box-sizing: border-box;
}

/* Neighborhoods Grid - Inline Display */
.neighborhoods-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.neighborhood {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #4a5568;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.neighborhood:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

/* Featured Project Title Spacing */
.featured-project .project-details h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Footer Styling */
footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #e2e8f0;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #63b3ed, #90cdf4);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-logo h3 {
    color: #f7fafc;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.footer-cta .btn-outline {
    background: transparent;
    border: 2px solid #63b3ed;
    color: #63b3ed;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-cta .btn-outline:hover {
    background: #63b3ed;
    color: #1a202c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 179, 237, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-section h4 {
    color: #f7fafc;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-grid {
    display: grid;
    gap: 0.75rem;
}

.city-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #63b3ed;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(99, 179, 237, 0.1);
    border: 1px solid transparent;
}

.city-link:hover {
    background: rgba(99, 179, 237, 0.2);
    border-color: #63b3ed;
    transform: translateX(5px);
    color: #90cdf4;
}

.city-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.coverage-areas {
    display: grid;
    gap: 0.75rem;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coverage-icon {
    font-size: 1rem;
    color: #68d391;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #4a5568, transparent);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
}

.footer-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    background: rgba(99, 179, 237, 0.2);
    color: #63b3ed;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(99, 179, 237, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-tags {
        flex-direction: column;
        align-items: center;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-header.visible {
    transform: translateY(0);
}

.fixed-header .logo {
    height: 40px;
    width: auto;
    display: block;
    background: transparent;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: #4a5568;
}

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 120px 20px; /* Increased from 80px for better spacing */
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero-logo {
    height: 80px;
    width: auto;
    margin-bottom: 3rem; /* Increased from 2rem */
    animation: fadeInUp 0.8s ease-out;
    background: transparent;
}

.hero h1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    margin-bottom: 2rem; /* Increased from 1.5rem */
    color: #1a202c;
    font-size: 3.7rem; /* Updated to 3.7rem */
}

.hero h1 .headline-accent {
    font-size: 0.7em; /* Smaller size - 70% of parent */
    font-weight: 600; /* Bolder font weight for more impact */
    display: block; /* Stack on new line for better readability */
    margin-top: 0.5rem; /* Add some spacing */
}

.hero p {
    font-size: 1.3rem; /* Slightly larger */
    max-width: 700px; /* Wider for better readability */
    margin: 0 auto 2.5rem auto; /* Increased bottom margin */
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: #4a5568;
    line-height: 1.7; /* Better line height */
}

/* Button Styles */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #f48278 0%, #e67e73 100%);
    color: #ffffff;
    padding: 18px 36px; /* Slightly larger */
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700; /* Bolder */
    font-size: 1.2rem; /* Larger */
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(244, 130, 120, 0.4); /* Stronger shadow */
    border: none;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px); /* Increased from -2px */
    box-shadow: 0 12px 35px rgba(244, 130, 120, 0.6); /* Stronger shadow on hover */
    background: linear-gradient(135deg, #e67e73 0%, #d6786e 100%);
}

.btn.animated {
    animation: pulse 2s ease-in-out 8s infinite;
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
    animation: fadeInUp 0.8s ease-out;
}

/* Steps Section */
.steps {
    background: #ffffff;
}

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

.step {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

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

.step-number {
    background: linear-gradient(135deg, #f48278 0%, #e67e73 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

.step h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.step p {
    color: #4a5568;
    margin: 0;
}

/* Proof Section */
.proof {
    background: #f8fafc;
}

/* Featured Project */
.featured-project {
    margin-bottom: 4rem;
}

.proof-images.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    aspect-ratio: 2/1;
}

.proof-images.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(-50%);
    z-index: 2;
}

.proof-images.featured .proof-item img {
    height: 100%;
    min-height: 250px;
}

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

.project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    height: fit-content;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-card:hover .proof-item img {
    transform: scale(1.08);
}

.proof-images.small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    position: relative;
    aspect-ratio: 2/1;
    overflow: hidden;
}

.proof-images.small::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(-50%);
    z-index: 2;
}

.proof-images.small .proof-item img {
    height: 100%;
    min-height: 180px;
    transition: transform 0.4s ease;
}

.proof-item {
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.proof-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proof-item:hover::before {
    opacity: 1;
}

.proof-item:first-child {
    border-radius: 16px 0 0 16px;
}

.proof-item:last-child {
    border-radius: 0 16px 16px 0;
}

.proof-images.small .proof-item:first-child {
    border-radius: 0;
}

.proof-images.small .proof-item:last-child {
    border-radius: 0;
}

.proof-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform;
}

.proof-item img.visible {
    opacity: 1;
    transform: translateY(0);
}

.proof-item:hover img {
    transform: scale(1.1);
}

.proof-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
    z-index: 3;
    transition: all 0.3s ease;
}

.proof-item:hover .proof-label {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.05);
}

.proof-images.small .proof-label {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Project Details */
.project-details {
    text-align: center;
    padding: 0rem 1.5rem 1.5rem 1.5rem;
}

.project-details h3 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.project-details h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.project-details p {
    color: #4a5568;
    margin: 0;
    font-size: 1rem;
}

/* Benefits Section */
.benefits {
    background: #ffffff;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    animation: fadeInUp 0.8s ease-out;
}

.benefit-icon {
    background: linear-gradient(135deg, #f48278 0%, #e67e73 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text {
    color: #1a202c;
    font-weight: 500;
}

/* Form Section */
.form-section {
    background: #f8fafc; /* Light gray background for separation */
    padding: 80px 20px;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.form-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: #4a5568;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form input,
form select,
form button {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

form input:focus,
form select:focus {
    outline: none;
    border-color: #f48278;
    box-shadow: 0 0 0 3px rgba(244, 130, 120, 0.1);
}

form button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Emerald green for conversion */
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

form button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#formMsg {
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

.urgency-text {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #e53e3e;
    font-weight: 600;
}

/* Footer */
footer {
    background: #1a202c;
    color: #a0aec0;
    text-align: center;
    padding: 2rem 20px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0px; /* Remove horizontal padding for full width */
    }
    
    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem); /* Better mobile scaling */
        margin-bottom: 1rem; /* Reduced from 1.5rem */
    }
    
    .hero h1 .headline-accent {
        font-size: 0.65em; /* Slightly smaller on mobile */
        font-weight: 600; /* Bolder font weight for more impact */
        margin-top: 0.25rem; /* Reduced spacing for mobile */
    }
    
    .hero p {
        font-size: 1rem; /* Slightly smaller for mobile */
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 1.5rem; /* Reduced from 2.5rem */
    }
    
    .hero-logo {
        height: 50px; /* Smaller logo for mobile */
        margin-bottom: 1.5rem; /* Reduced from 2rem */
    }
    
    /* Mobile form optimization */
    .mobile-form {
        display: block; /* Show on mobile */
        margin-top: 1rem; /* Reduced from 1.5rem */
        padding: 1rem; /* Reduced padding */
        border-radius: 0; /* Remove rounded corners */
    }
    
    .mobile-form-fields {
        gap: 0.25rem; /* Tighter spacing */
        margin-bottom: 0.75rem;
    }
    
    .mobile-form-fields input {
        padding: 0.625rem; /* Smaller padding */
        font-size: 0.875rem;
        border-radius: 0; /* Remove rounded corners */
    }
    
    .mobile-form button {
        padding: 0.75rem; /* Smaller padding */
        font-size: 0.9rem;
        border-radius: 0; /* Remove rounded corners */
    }
    
    .mobile-urgency {
        margin-top: 0.5rem;
        font-size: 0.75rem;
    }
    
    .hero .btn {
        display: none; /* Hide desktop CTA on mobile */
        border-radius: 0; /* Remove rounded corners */
    }
    
    /* Mobile button override */
    .btn {
        border-radius: 0; /* Remove rounded corners on mobile */
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .form-section {
        padding: 0px 0px; /* Remove all padding for full width */
    }
    
    .form-container {
        padding: 2rem;
        margin: 0; /* Remove margin for full width */
        border-radius: 0; /* Remove rounded corners */
    }
    
    .form-container input,
    .form-container select,
    .form-container button {
        border-radius: 0; /* Remove rounded corners */
    }
    
    .form-section h2 {
        font-size: 1.3rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-images.featured {
        grid-template-columns: 1fr;
        gap: 1px;
        aspect-ratio: 1/1.2;
    }
    
    .proof-images.featured::after {
        display: none;
    }
    
    .proof-images.featured .proof-item:first-child {
        border-radius: 0; /* Remove rounded corners */
    }
    
    .proof-images.featured .proof-item:last-child {
        border-radius: 0; /* Remove rounded corners */
    }
    
    .proof-images.featured .proof-item img {
        height: 100%;
        min-height: 450px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Mobile: Keep side-by-side layout for better image visibility */
    .proof-images.small {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        aspect-ratio: 2/1.4;
        min-height: 200px;
    }
    
    .proof-images.small::after {
        display: block;
    }
    
    .proof-images.small .proof-item:first-child {
        border-radius: 0; /* Remove rounded corners */
    }
    
    .proof-images.small .proof-item:last-child {
        border-radius: 0; /* Remove rounded corners */
    }
    
    .proof-images.small .proof-item img {
        height: 100%;
        min-height: 200px;
    }
    
    /* Smaller labels on mobile for better image visibility */
    .proof-images.small .proof-label {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .project-details {
        padding: 0rem 1rem 1rem 1rem;
    }
    
    .project-details h3 {
        font-size: 1.2rem;
    }
    
    .project-details h4 {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        padding: 1.5rem;
        border-radius: 0; /* Remove rounded corners */
    }
    
    /* Mobile logo adjustments */
    .fixed-header .logo {
        height: 45px;
        margin: 0 auto;
        display: block;
    }
    
    .fixed-header {
        padding: 0.75rem 0;
        text-align: center;
    }
}

/* Tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .proof-images.small {
        aspect-ratio: 2/1;
        min-height: 200px;
    }
    
    .proof-images.small .proof-item img {
        min-height: 200px;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #f48278;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

/* Animation for tab content */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta .btn {
    background: linear-gradient(135deg, #f48278 0%, #e67e73 100%);
    color: #ffffff;
    padding: 16px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(244, 130, 120, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
}

.floating-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(244, 130, 120, 0.6);
    background: linear-gradient(135deg, #e67e73 0%, #d6786e 100%);
}

/* Mobile floating CTA */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
} 

/* Mobile-Only Compact Form */
.mobile-form {
    display: none; /* Hidden by default */
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 130, 120, 0.2);
}

.mobile-form-fields {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mobile-form-fields input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-form-fields input:focus {
    outline: none;
    border-color: #f48278;
    box-shadow: 0 0 0 3px rgba(244, 130, 120, 0.1);
}

.mobile-form button {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Emerald green for conversion */
    color: #ffffff;
    padding: 0.875rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-form button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.mobile-urgency {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #e53e3e;
    font-weight: 600;
    text-align: center;
} 