:root {
    --primary-teal: #00BFA6;
    --dark-blue: #1A1A1A;
    --teal-light: #E0F2F1;
    --teal-dark: #00897B;
    --light-gray: #F7F7F7;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #ffffff;
    --border-radius: 16px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

/* Enhanced container for larger screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 40px;
    }
}

/* Coming Soon Banner */
.coming-soon {
    background-color: var(--dark-blue);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Header Styles - No Fixed Positioning */
header {
    padding: 8px 0 !important;   /* reduce navbar height */
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Enhanced header for desktop */
@media (min-width: 769px) {
    header {
        padding: 12px 0 !important;
    }
    
    .header-container {
        gap: 20px;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Enhanced Logo Styles for Better Visibility */
.logo-img {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
}

.logo-img img {
    height: 120px;
    width: auto;
    max-width: 100%;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    padding: 0;
    margin: 0;
}

/* Increased logo size for desktop */
@media (min-width: 769px) {
    .logo-img img {
        height: 130px;
    }
}

@media (min-width: 1400px) {
    .logo-img img {
        height: 180px;
    }
}

.logo-img img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 191, 166, 0.4));
}

.nav-links {
    display: flex;
    gap: 20px;
}

/* Reduced gap for desktop */
@media (min-width: 769px) {
    .nav-links {
        gap: 18px;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 18px;
    transition: 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    background-color: transparent;
}

/* Enhanced nav links for desktop */
@media (min-width: 769px) {
    .nav-links a {
        font-size: 20px;
        padding: 8px 16px;
    }
}

/* Large desktop nav links */
@media (min-width: 1400px) {
    .nav-links a {
        font-size: 22px;
    }
}

.nav-links a:hover {
    background-color: rgba(0, 191, 166, 0.15);
    color: var(--primary-teal);
}

.cta-button {
    background-color: var(--primary-teal);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 191, 166, 0.3);
    min-height: 44px;
    touch-action: manipulation;
}

/* Enhanced CTA button for desktop */
@media (min-width: 769px) {
    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}

.cta-button:hover {
    background-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 166, 0.4);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* Hide mobile menu icon on desktop view */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

.mobile-menu:hover {
    color: var(--primary-teal);
}

/* Hero Section */
.hero {
    padding: 40px 0 80px 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--teal-light) 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Logo Enhancement */
.hero-logo {
    height: 200px;
    width: auto;
    max-width: 100%;
    margin-bottom: 25px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
    display: block;
}

.hero-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 16px rgba(0, 191, 166, 0.4));
}

/* Ensure the hero logo is left-aligned when the hero content is not centered (on desktop) */
@media (min-width: 993px) {
    .hero-content .hero-logo {
        margin-left: 0;
        margin-right: auto;
    }
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Enhanced hero section for desktop */
@media (min-width: 769px) {
    .hero {
        padding: 50px 0 100px 0;
        min-height: 600px;
    }
    
    .hero-container {
        gap: 60px;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 56px;
        line-height: 1.15;
        margin-bottom: 24px;
    }
    
    .hero p {
        font-size: 20px;
        margin-bottom: 35px;
        max-width: 600px;
    }
    
    .hero-logo {
        height: 220px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        gap: 20px;
    }
    
    .hero-buttons .cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* Large desktop hero enhancements */
@media (min-width: 1400px) {
    .hero h1 {
        font-size: 64px;
    }
    
    .hero p {
        font-size: 22px;
        max-width: 650px;
    }
    
    .hero-logo {
        height: 240px;
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: rgba(0, 191, 166, 0.1);
}

/* Map Container Styles */
.map-container {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background-color: #E8F5F3;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Enhanced map container for desktop */
@media (min-width: 769px) {
    .map-container {
        max-width: 550px;
        height: 450px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
}

@media (min-width: 1400px) {
    .map-container {
        max-width: 600px;
        height: 500px;
    }
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

.map-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #E8F5F3;
}

.map-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 191, 166, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 191, 166, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-roads {
    position: absolute;
    width: 100%;
    height: 100%;
}

.road {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.1);
}

.road.horizontal {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-1.5px);
}

.road.vertical {
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    transform: translateX(-1.5px);
}

.road.diagonal {
    width: 3px;
    height: 140%;
    background-color: rgba(0, 0, 0, 0.05);
    top: -20%;
    left: 30%;
    transform: rotate(45deg);
}

.service-providers {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Service Provider Styles with Hover Tooltips */
.service-provider {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    z-index: 10;
    border: 2px solid white;
    cursor: pointer;
    transition: var(--transition);
}

.service-provider:hover {
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 100;
}

.service-provider::before {
    content: attr(data-occupation);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-blue);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.service-provider::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--dark-blue);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.service-provider:hover::before,
.service-provider:hover::after {
    opacity: 1;
    visibility: visible;
}

.service-provider.cleaning {
    background-color: #FF6B6B;
}

.service-provider.plumbing {
    background-color: #4ECDC4;
}

.service-provider.handyman {
    background-color: #FFA07A;
}

.service-provider.decor {
    background-color: #AC92EC;
}

.service-provider.tire {
    background-color: #FFCE54;
}

.service-provider.assistant {
    background-color: #A0D568;
}

.user-location {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
}

.user-marker {
    width: 44px;
    height: 44px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 191, 166, 0.5);
    margin: 0 auto 8px;
    border: 2px solid white;
}

.location-label {
    font-size: 12px;
    color: var(--text-light);
    background-color: white;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

/* Section Styles */
section {
    padding: 80px 0;
}

/* Enhanced section spacing for desktop */
@media (min-width: 769px) {
    section {
        padding: 100px 0;
    }
}

@media (min-width: 1400px) {
    section {
        padding: 120px 0;
    }
}

.section-dark {
    background-color: var(--dark-blue);
    color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

/* Enhanced section titles for desktop */
@media (min-width: 769px) {
    .section-title {
        font-size: 42px;
        margin-bottom: 70px;
    }
}

@media (min-width: 1400px) {
    .section-title {
        font-size: 48px;
        margin-bottom: 80px;
    }
}

.section-dark .section-title {
    color: var(--white);
}

/* How It Works */
.steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* Enhanced steps for desktop */
@media (min-width: 769px) {
    .steps {
        gap: 40px;
    }
    
    .step {
        padding: 40px 30px;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .step h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .step p {
        font-size: 16px;
    }
}

@media (min-width: 1400px) {
    .steps {
        gap: 50px;
    }
    
    .step {
        padding: 45px 35px;
    }
}

.step {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-teal);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-teal);
}

.section-dark .step h3 {
    color: var(--primary-teal);
}

.step p {
    color: var(--text-light);
}

.section-dark .step p {
    color: rgba(255, 255, 255, 0.7);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Enhanced services grid for desktop */
@media (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--teal-light);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 191, 166, 0.1);
    border-color: var(--primary-teal);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 24px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

/* Why Choose Us - 4 Cards in Single Row */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Enhanced features grid for desktop */
@media (min-width: 769px) {
    .features-grid {
        gap: 30px;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
}

@media (min-width: 1400px) {
    .features-grid {
        gap: 40px;
    }
    
    .feature-card {
        padding: 45px 35px;
    }
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-teal);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 191, 166, 0.1);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-teal);
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 14px;
}

/* The Jusslay Difference Section */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Enhanced difference grid for desktop */
@media (min-width: 769px) {
    .difference-grid {
        gap: 40px;
    }
    
    .difference-card {
        padding: 55px 35px 45px;
    }
}

@media (min-width: 1400px) {
    .difference-grid {
        gap: 50px;
    }
    
    .difference-card {
        padding: 60px 40px 50px;
    }
}

.difference-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 30px 40px;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--teal-light);
    transition: var(--transition);
    position: relative;
}

.difference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 166, 0.15);
    border-color: var(--primary-teal);
}

.difference-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 191, 166, 0.3);
}

.difference-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark-blue);
    font-weight: 600;
}

.difference-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    background-color: var(--dark-blue);
    color: white;
    text-align: center;
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

/* Enhanced CTA section for desktop */
@media (min-width: 769px) {
    .cta-section {
        padding: 35px 0;
    }
    
    .cta-section h2 {
        font-size: 42px;
        margin-bottom: 12px;
    }
    
    .cta-section p {
        font-size: 18px;
        max-width: 1200px;
        margin: 0 auto 15px;
    }
    
    .cta-buttons {
        gap: 20px;
    }
    
    .white-button,
    .secondary-button {
        padding: 14px 32px;
        font-size: 16px;
    }
}

@media (min-width: 1400px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 48px;
        margin-bottom: 12px;
    }
    
    .cta-section p {
        font-size: 20px;
        max-width: 1200px;
        margin-bottom: 15px;
    }
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--dark-blue) 0%, rgba(0, 191, 166, 0.1) 100%);
    z-index: -1;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-section p {
    margin-bottom: 18px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

@media (min-width: 769px) {
    .cta-buttons {
        margin-top: 8px;
        gap: 12px;
    }
}

.white-button {
    background-color: white;
    color: var(--dark-blue);
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.white-button:hover {
    background-color: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.cta-note {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.8;
}

@media (min-width: 769px) {
    .cta-note {
        margin-top: 10px;
    }
}

/* Footer */
/* --- Improved Footer Layout (Medium Spacing) --- */
footer {
    background-color: var(--dark-blue);
    padding: 40px 0 30px;
    color: white;
}

/* Enhanced footer for desktop */
@media (min-width: 769px) {
    footer {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        gap: 70px;
    }
    
    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 15px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
}

@media (min-width: 1400px) {
    footer {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        gap: 70px;
    }
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 70px !important;    /* perfect medium spacing */
    flex-wrap: wrap;
    margin-bottom: 40px;
    width: 100%;
}

/* Each column width control */
.footer-column {
    flex: 1;
    min-width: 220px;        /* prevents collapsing */
    max-width: 260px;        /* prevents OVER-stretching */
}

/* Center the logo & text within its column */
footer .footer-column:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* or center if you want centered */
}

/* Newsletter column (rightmost) */
.footer-column:last-child {
    max-width: 300px;        /* keeps the form neat */
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-teal);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-description {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* Reduce spacing between logo and text */
footer .logo-img {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-teal);
    color: white;
}

.waitlist-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

/* Newsletter form improvements */
.newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 30px 0 0 30px;
    flex: 1;
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background-color: var(--primary-teal);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background-color: var(--teal-dark);
}

/* Footer bottom line centered properly */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Footer Logo Enhancement - Smaller and Proportionate */
footer .logo-img img {
    height: 120px;        /* increased size */
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

/* Keep consistent size across all screen sizes */
@media (min-width: 769px) {
    footer .logo-img img {
        height: 120px;
    }
}

@media (min-width: 1400px) {
    footer .logo-img img {
        height: 120px;
    }
}

footer .logo-img img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 191, 166, 0.4));
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    color: white;
    padding: 25px 30px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--teal-light);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

.modal-description {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

/* Form Styles */
.form-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--teal-light);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-blue);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--teal-light);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
}

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

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-option input,
.checkbox-option input {
    margin: 0;
}

.radio-option label,
.checkbox-option label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.submit-btn {
    background-color: var(--primary-teal);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--teal-dark);
    transform: translateY(-2px);
}

.cancel-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cancel-btn:hover {
    background-color: var(--text-light);
    color: white;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-content .hero-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .steps {
        flex-direction: column;
        gap: 25px;
    }
    
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
    }
    
    /* Reduce section padding on tablets */
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    /* Header adjustments */
    .header-container {
        position: relative;
    }
    
    .header-container > .cta-button {
        display: none;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 15px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 0;
        margin-top: 5px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 14px 16px;
        border-bottom: 1px solid var(--teal-light);
        font-size: 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
        border-radius: 0;
        background-color: transparent;
    }
    
    .nav-links a:hover {
        background-color: rgba(0, 191, 166, 0.1);
    }
    
    .nav-links a:last-child {
        border-bottom: 1px solid var(--teal-light);
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    /* Mobile CTA button in menu */
    .nav-links .mobile-cta-button {
        width: 100%;
        margin-top: 15px;
        padding: 12px 24px;
    }
    
    /* Section padding adjustments */
    section {
        padding: 40px 0;
    }
    
    /* Hero section - Dynamic and Fluid */
    .hero {
        padding: clamp(20px, 5vw, 30px) 0 clamp(10px, 2.5vw, 15px) 0;
        min-height: auto;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        gap: clamp(8px, 2vw, 12px);
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section {
        padding: clamp(40px, 8vw, 50px) 0;
    }
    
    /* Hero section */
    .hero h1 {
        font-size: clamp(24px, 6vw, 32px);
        line-height: 1.1;
        margin-bottom: clamp(3px, 1vw, 6px);
        text-align: center;
    }
    
    .hero p {
        font-size: clamp(13px, 3.5vw, 16px);
        margin-bottom: clamp(6px, 1.5vw, 10px);
        line-height: 1.3;
        text-align: center;
    }
    
    .hero-logo {
        height: clamp(70px, 18vw, 90px);
        margin-top: clamp(6px, 1.5vw, 10px);
        margin-bottom: clamp(3px, 1vw, 6px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        margin-top: 0;
        margin-bottom: 0;
        justify-content: center;
        width: 100%;
    }
    
    .map-container {
        max-width: 100%;
        height: clamp(140px, 35vw, 180px);
        margin-top: clamp(2px, 0.5vw, 4px);
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Section titles - Dynamic */
    .section-title {
        font-size: clamp(24px, 5.5vw, 32px);
        margin-bottom: clamp(30px, 7vw, 45px);
    }
    
    /* Services grid - Dynamic */
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(clamp(140px, 35vw, 180px), 1fr));
        gap: clamp(15px, 3.5vw, 22px);
    }
    
    .service-card {
        padding: clamp(20px, 4.5vw, 28px) clamp(12px, 3vw, 18px);
    }
    
    /* Steps - Dynamic */
    .steps {
        gap: clamp(20px, 4.5vw, 28px);
    }
    
    .step {
        padding: clamp(20px, 4.5vw, 28px) clamp(15px, 3.5vw, 22px);
    }
    
    /* CTA buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .cta-buttons button {
        width: 100%;
        min-height: 48px;
    }
    
    .hero-buttons {
        gap: clamp(10px, 2.5vw, 14px);
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        min-height: clamp(44px, 11vw, 52px);
        font-size: clamp(14px, 3.5vw, 16px);
        padding: clamp(12px, 3vw, 16px) clamp(20px, 5vw, 28px);
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        width: 100%;
        padding: 14px 16px;
        min-height: 48px;
    }
    
    .newsletter-form button {
        border-radius: 30px;
        width: 100%;
        padding: 14px 24px;
        min-height: 48px;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    /* Difference grid */
    .difference-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }
    
    .difference-card {
        padding: 40px 20px 30px;
    }
    
    /* Responsive logo adjustments - Dynamic */
    .logo-img img {
        height: clamp(75px, 20vw, 95px);
    }
    
    footer .logo-img img {
        height: 100px;
        width: auto;
        object-fit: contain;
        margin-bottom: 20px;
    }
    
    /* Footer adjustments - 2 column layout for Company and Support */
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
    }
    
    /* First column (logo) - full width */
    .footer-column:first-child {
        grid-column: 1 / -1;
        min-width: 100%;
        align-items: center;
        text-align: center;
    }
    
    footer .footer-column:first-child .logo-img {
        margin-left: auto;
        margin-right: auto;
    }
    
    footer .footer-column:first-child .footer-description {
        text-align: center;
    }
    
    footer .footer-column:first-child .social-icons {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    
    /* Company and Support columns - side by side in 2 columns */
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        min-width: 0;
        max-width: none;
    }
    
    /* Newsletter column - full width */
    .footer-column:last-child {
        grid-column: 1 / -1;
        min-width: 100%;
        max-width: none;
    }
    
    /* Responsive modal */
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h2 {
        font-size: 20px;
        padding-right: 30px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
    
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Coming soon banner */
    .coming-soon {
        padding: 10px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Container padding for very small screens - Dynamic */
    .container {
        padding: 0 clamp(10px, 3vw, 15px);
    }
    
    /* Header - Dynamic */
    header {
        padding: clamp(12px, 3vw, 18px) 0;
    }
    
    .logo-img img {
        height: clamp(70px, 18vw, 85px);
    }
    
    /* Hero section - Dynamic and Fluid */
    .hero {
        padding: clamp(18px, 4.5vw, 28px) 0 clamp(8px, 2vw, 12px) 0;
        min-height: auto;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        gap: clamp(6px, 1.8vw, 10px);
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 {
        font-size: clamp(22px, 5.5vw, 28px);
        margin-bottom: clamp(2px, 0.8vw, 4px);
        line-height: 1.1;
        text-align: center;
    }
    
    .hero p {
        font-size: clamp(12px, 3.2vw, 15px);
        margin-bottom: clamp(4px, 1.2vw, 8px);
        line-height: 1.25;
        text-align: center;
    }
    
    .hero-logo {
        height: clamp(65px, 16vw, 80px);
        margin-top: clamp(4px, 1.2vw, 8px);
        margin-bottom: clamp(2px, 0.8vw, 4px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        margin-top: 0;
        margin-bottom: 0;
        justify-content: center;
        width: 100%;
    }
    
    .map-container {
        height: clamp(130px, 32vw, 160px);
        margin-top: clamp(1px, 0.5vw, 3px);
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Sections - Dynamic */
    section {
        padding: clamp(30px, 7vw, 40px) 0;
    }
    
    .section-title {
        font-size: clamp(20px, 5vw, 28px);
        margin-bottom: clamp(20px, 5vw, 35px);
    }
    
    /* Services grid - single column on very small screens */
    .services-grid {
        grid-template-columns: 1fr;
        gap: clamp(12px, 3vw, 18px);
    }
    
    .service-card {
        padding: clamp(18px, 4vw, 25px) clamp(12px, 3vw, 18px);
    }
    
    /* Steps - Dynamic */
    .step {
        padding: clamp(18px, 4vw, 25px) clamp(12px, 3vw, 18px);
    }
    
    .step-icon {
        width: clamp(55px, 14vw, 70px);
        height: clamp(55px, 14vw, 70px);
        font-size: clamp(20px, 5vw, 28px);
    }
    
    .step h3 {
        font-size: 18px;
    }
    
    /* Feature cards */
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* Difference cards */
    .difference-card {
        padding: 35px 15px 25px;
    }
    
    .difference-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        top: -20px;
    }
    
    .difference-card h3 {
        font-size: 20px;
    }
    
    /* CTA section */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 15px;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 20px;
    }
    
    footer .logo-img img {
        height: 90px;
        width: auto;
        object-fit: contain;
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
    
    /* Modal */
    .modal-content {
        margin: 5% auto;
        width: 98%;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .close-modal {
        top: 15px;
        right: 20px;
        font-size: 24px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .form-section h3 {
        font-size: 18px;
    }
    
    /* Coming soon banner */
    .coming-soon {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .coming-soon .container {
        padding: 0 12px;
    }
    
    /* Buttons */
    .cta-button,
    .white-button,
    .secondary-button {
        padding: clamp(11px, 2.8vw, 14px) clamp(18px, 4.5vw, 24px);
        font-size: clamp(13px, 3.2vw, 15px);
        min-height: clamp(44px, 11vw, 48px);
    }
    
    /* Improve touch targets */
    .service-card,
    .step,
    .feature-card,
    .difference-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 191, 166, 0.1);
    }
    
    /* Ensure readable text sizes */
    .service-card p,
    .step p,
    .feature-card p {
        font-size: 14px;
    }
}

/* Enhanced Form Styles */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--teal-light);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.progress-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--teal-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.progress-step.active .progress-circle {
    background-color: var(--primary-teal);
    color: white;
}

.progress-step.completed .progress-circle {
    background-color: var(--teal-dark);
    color: white;
}

.progress-label {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}

.progress-step.active .progress-label {
    color: var(--primary-teal);
    font-weight: 600;
}

.form-section {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.form-section.active {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--teal-light);
}

.nav-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-teal);
    border-radius: 25px;
    background: transparent;
    color: var(--primary-teal);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn:disabled:hover {
    background-color: transparent;
    color: var(--primary-teal);
}

.nav-btn.next {
    background-color: var(--primary-teal);
    color: white;
}

.nav-btn.next:hover {
    background-color: var(--teal-dark);
}

.form-message {
    text-align: center;
    padding: 40px 20px;
}

.form-message h3 {
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-size: 24px;
}

.form-message p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Validation Styles */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.error-message {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Required field indicator */
.required-label::after {
    content: " *";
    color: #ff4444;
}