/* Professional FeastiGo Landing Page - Inspired by Swish Design */

:root {
    --primary: #2e37ff;
    --primary-dark: #252ecc;
    --primary-light: #4a52ff;
    --white: #ffffff;
    --black: #000000;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --gray-dark: #374151;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    color: var(--gray-dark);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

/* Professional Header */
.professional-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px; 
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 60px; 
    width: auto;
    object-fit: contain;
}



.header-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}



/* Download Buttons in Nav */
.nav-download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-website-btn:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.nav-playstore-btn:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.nav-btn-text {
    font-size: 12px;
    font-weight: 600;
}

/* Regular Nav Items */
.nav-item {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.nav-item:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.audio-toggle.playing {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Hero Section */
.hero-professional {
    padding: 145px 0 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    position: relative;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.launch-badge-pro {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.promo-banner {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(46, 55, 255, 0.2);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.promo-banner:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-headline {
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.headline-main {
    display: block;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

.headline-sub {
    display: block;
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 8px;
}

.headline-time {
    display: block;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: var(--primary);
    position: relative;
}

.headline-time::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Hero Service Description - Clean & Minimalistic */
.hero-service-description {
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Clean Service Summary */
.service-summary {
    text-align: center;
    margin-bottom: 32px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-types-text {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.service-delivery-text {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    text-transform: none;
    letter-spacing: 0.3px;
}

/* Service Areas Label */
.service-areas-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(46, 55, 255, 0.08);
    border: 1px solid rgba(46, 55, 255, 0.2);
    border-radius: 20px;
    display: inline-block;
}

/* Clean Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    max-width: 100%;
    justify-items: center;
}

.location-item {
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    cursor: default;
    width: 100%;
    max-width: 160px;
}

.location-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px) translateZ(5px) rotateX(5deg);
    box-shadow: 0 8px 20px rgba(46, 55, 255, 0.2);
    transform-style: preserve-3d;
}

/* Launch Countdown Section */
.launch-countdown-section {
    margin-bottom: 48px;
}

.countdown-header {
    text-align: center;
    margin-bottom: 32px;
}

.ready-message {
    font-size: 16px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 25px;
    display: inline-block;
    animation: readyPulse 3s infinite;
}

.countdown-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.countdown-subtitle {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Countdown Timer */
.countdown-professional {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.launch-message {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(46, 55, 255, 0.08);
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(46, 55, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.countdown-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    min-width: 100px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    transition: var(--transition);
    animation: float3d 6s ease-in-out infinite;
}

.countdown-card:hover {
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: 0 15px 35px rgba(46, 55, 255, 0.2);
}

.countdown-card:nth-child(1) {
    animation-delay: 0s;
}

.countdown-card:nth-child(3) {
    animation-delay: 2s;
}

.countdown-card:nth-child(5) {
    animation-delay: 4s;
}

.countdown-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray);
}



/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.stat-item-pro {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider-pro {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-professional {
    padding: 100px 0;
    background: var(--white);
    perspective: 1000px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header-pro {
    text-align: center;
    margin-bottom: 64px;
}

.section-title-pro {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--gray-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle-pro {
    font-size: 18px;
    color: var(--gray);
    font-weight: 500;
}

.services-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card-pro {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid #e5e7eb;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: rotateIn3d 0.8s ease-out forwards;
    transform-style: preserve-3d;
}

.service-card-pro:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card-pro:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card-pro:nth-child(3) {
    animation-delay: 0.6s;
}

.service-card-pro:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(-2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
}

.service-card-pro.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.service-badge-pro {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon-pro {
    font-size: 48px;
    margin-bottom: 24px;
    filter: grayscale(20%);
}

.service-title-pro {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc-pro {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-time-pro {
    background: var(--gray-light);
    color: var(--gray-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
}

.service-card-pro.featured .service-time-pro {
    background: var(--primary);
    color: var(--white);
}

/* Partnership Section */
.partnership-professional {
    padding: 100px 0;
    background: var(--gray-light);
}

.partnership-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.partnership-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partnership-card:hover {
    transform: translateY(-12px) rotateX(8deg) rotateY(-3deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    border-radius: 24px 24px 0 0;
}

.delivery-partner::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.vendor-partner::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.partnership-icon {
    font-size: 48px;
    margin-bottom: 24px;
    filter: grayscale(10%);
}

.partnership-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.partnership-desc {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.partnership-benefits {
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 20px;
    background: var(--gray-light);
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(4px);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2);
}

.benefit-icon {
    font-size: 20px;
    transition: var(--transition);
}

.benefit-text {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.partnership-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    box-shadow: 0 8px 24px rgba(46, 55, 255, 0.3);
}

.partnership-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(46, 55, 255, 0.4);
}

.delivery-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 8px 24px rgba(46, 55, 255, 0.3);
}

.delivery-btn:hover {
    box-shadow: 0 12px 32px rgba(46, 55, 255, 0.4);
}

.vendor-btn {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.vendor-btn:hover {
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
}

/* Service Areas */
.areas-professional {
    padding: 100px 0;
    background: var(--gray-light);
}

.areas-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.areas-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.areas-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 48px;
    font-weight: 500;
}

/* Service Area Map - Clean Design */
.area-map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-wrapper {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
    margin-bottom: 24px;
    transform-style: preserve-3d;
    animation: tilt3d 8s ease-in-out infinite;
}

.map-wrapper:hover {
    transform: translateY(-6px) rotateX(3deg) rotateY(1deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    animation-play-state: paused;
}

.map-wrapper:hover .map-click-hint {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.area-map {
    width: 100%;
    height: auto;
    display: block;
    max-height: 450px;
    object-fit: cover;
}

.map-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.map-wrapper:hover .map-click-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.05);
}

.map-click-hint {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: pulseGlow 2s infinite;
}

/* View Full Map Button */
.view-full-map-btn {
    display: block;
    width: fit-content;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 auto 32px auto;
    text-align: center;
    box-shadow: 0 4px 20px rgba(46, 55, 255, 0.3);
}

.view-full-map-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(46, 55, 255, 0.4);
}

.view-full-map-btn svg {
    width: 20px;
    height: 20px;
}



@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.2);
    }
}



/* Download Section */
.download-professional {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.download-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.download-title-pro {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.download-btn {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    opacity: 1;
    transition: var(--transition);
    min-width: 200px;
}

.download-btn:hover {
    border-color: var(--primary);
    transform: translateY(-4px) rotateX(5deg) rotateY(-2deg);
    box-shadow: 0 15px 35px rgba(46, 55, 255, 0.15);
    transform-style: preserve-3d;
}



.btn-icon {
    color: var(--gray-dark);
}

.btn-text {
    text-align: left;
}

.btn-subtitle {
    display: block;
    font-size: 12px;
    color: var(--gray);
    font-weight: 400;
}

.btn-title {
    display: block;
    font-size: 16px;
    color: var(--gray-dark);
    font-weight: 600;
}

.download-note-pro {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 16px;
}

.download-promo {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(46, 55, 255, 0.15);
    margin-top: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-promo:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 55, 255, 0.25);
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 95%;
    max-height: 95%;
    z-index: 10001;
}

.modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    max-width: 500px;
}

.modal-caption h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.modal-caption p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Footer */
.footer-professional {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    padding: 10px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Language Toggle */
.telugu-content {
    display: none;
}

body.telugu .telugu-content {
    display: inline;
}

body.telugu .english-content {
    display: none;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 1000;
}

.fab-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 80px;
    height: 44px;
    padding: 0 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 22px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(46, 55, 255, 0.3);
    overflow: hidden;
    position: relative;
    text-align: center;
    margin: 0 auto;
}

.fab-item:hover {
    transform: scale(1.05) translateZ(10px) rotateY(5deg);
    box-shadow: 0 12px 30px rgba(46, 55, 255, 0.4);
    transform-style: preserve-3d;
}

.fab-item:active {
    transform: scale(0.95);
}

.fab-icon {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

/* Removed .fab-text styles since we're using .fab-icon for all text now */

.lang-fab {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.lang-fab .fab-icon {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-fab {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.audio-fab {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.audio-fab.playing {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 16px;
        right: 16px;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    
    .fab-item {
        min-width: 70px;
        height: 40px;
        padding: 0 12px;
        box-shadow: 0 2px 12px rgba(46, 55, 255, 0.3);
        margin: 0 auto;
    }
    
    .fab-item:hover {
        transform: scale(1.03);
    }
    
    .fab-icon {
        font-size: 13px;
        font-weight: 600;
    }
    
    /* Improve mobile touch targets and spacing */
    .nav-download-btn, .nav-item {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Better mobile typography */
    .hero-headline {
        margin-bottom: 20px;
    }
    
    /* Service cards mobile optimization */
    .service-card-pro {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        border: 2px solid #e5e7eb;
    }
    
    /* Partnership cards mobile optimization */
    .partnership-card {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }
    
    /* Download buttons mobile optimization */
    .download-btn {
        min-height: 60px;
        touch-action: manipulation;
    }
    
    /* Footer mobile optimization */
    .footer-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
}

/* Animations */

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(46, 55, 255, 0.2); transform: scale(1); }
    50% { box-shadow: 0 6px 20px rgba(46, 55, 255, 0.4); transform: scale(1.02); }
    100% { box-shadow: 0 4px 15px rgba(46, 55, 255, 0.2); transform: scale(1); }
}

@keyframes partnershipHighlight {
    0% { box-shadow: 0 25px 70px rgba(46, 55, 255, 0.25); }
    50% { box-shadow: 0 30px 80px rgba(46, 55, 255, 0.4); }
    100% { box-shadow: 0 25px 70px rgba(46, 55, 255, 0.25); }
}

@keyframes readyPulse {
    0%, 100% { 
        background: rgba(16, 185, 129, 0.1);
        border-color: rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    50% { 
        background: rgba(16, 185, 129, 0.15);
        border-color: rgba(16, 185, 129, 0.5);
        transform: scale(1.02);
    }
}

@keyframes float3d {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateY(-8px) rotateX(2deg);
    }
}

@keyframes rotateIn3d {
    0% {
        transform: rotateY(-90deg) rotateX(10deg);
        opacity: 0;
    }
    100% {
        transform: rotateY(0deg) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes tilt3d {
    0%, 100% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: rotateX(1deg) rotateY(1deg);
    }
    50% {
        transform: rotateX(-1deg) rotateY(-1deg);
    }
    75% {
        transform: rotateX(1deg) rotateY(-1deg);
    }
}

/* Large screens - 4K and above */
@media (min-width: 1920px) {
    .logo {
        height: 70px;
    }
    
    .footer-brand .logo {
        height: 60px;
    }
    
    .header-container {
        height: 95px;
    }
    
    .hero-professional {
        padding: 155px 0 100px 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .logo {
        height: 55px;
    }
    
    .footer-brand .logo {
        height: 45px;
    }
    
    .header-container {
        height: 80px;
    }
    
    .hero-professional {
        padding: 140px 0 100px 0;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        height: 75px;
    }
    
    .logo {
        height: 45px;
    }
    
    .header-nav {
    gap: 6px;
    }
    

    
    .nav-download-btn {
        padding: 6px 10px;
    }
    
    .nav-btn-text {
        font-size: 11px;
    }
    
    .nav-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .hero-professional {
        padding: 115px 0 80px 0;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    /* Hero Service Description - Tablet */
    .hero-service-description {
        max-width: 95%;
    }
    
    .service-summary {
        padding: 14px 20px;
        margin-bottom: 28px;
    }
    
    .service-types-text {
        font-size: 17px;
    }
    
    .service-delivery-text {
        font-size: 13px;
    }
    
    .service-areas-label {
        font-size: 13px;
        padding: 5px 14px;
        margin-bottom: 14px;
    }
    
    .location-grid {
        gap: 6px;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .location-item {
        padding: 7px 12px;
        font-size: 12px;
        max-width: 140px;
    }
    
    .countdown-professional {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .countdown-card {
        min-width: 80px;
        padding: 16px;
    }
    
    .countdown-number {
        font-size: 24px;
    }
    
    /* Launch Countdown Mobile */
    .countdown-header {
        margin-bottom: 24px;
    }
    
    .ready-message {
        font-size: 14px;
        padding: 6px 16px;
        margin-bottom: 12px;
    }
    
    .countdown-title {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .countdown-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .countdown-professional {
        margin-bottom: 24px;
    }
    
    .launch-message {
        font-size: 13px;
        padding: 10px 18px;
        margin: 0 20px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
    }
    
    .stat-divider-pro {
        width: 40px;
        height: 1px;
    }
    
    .services-container,
    .areas-container,
    .download-container,
    .partnership-container {
        padding: 0 20px;
    }
    
        .services-grid-pro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card-pro {
        padding: 32px 24px;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }
    
    .partnership-card {
        padding: 32px 24px;
    }
    
    .partnership-icon {
        font-size: 40px;
    }
    
    .partnership-title {
        font-size: 20px;
    }
    
    .partnership-desc {
        font-size: 15px;
    }
    
    .benefit-item {
        padding: 10px 16px;
        margin-bottom: 12px;
    }
    
    .benefit-text {
        font-size: 13px;
    }
    
    .partnership-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
        .area-map {
        max-height: 300px;
    }

    .view-full-map-btn {
        padding: 14px 24px;
        font-size: 15px;
        margin: 0 auto 24px auto;
        border-radius: 12px;
        display: block;
        width: fit-content;
    }
    

    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .promo-banner {
        font-size: 13px;
        padding: 8px 18px;
    }
    
    .download-promo {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .zoom-indicator {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .modal-close {
        top: -50px;
        width: 45px;
        height: 45px;
    }
    
    .modal-caption {
        margin-top: 15px;
        padding: 16px;
        max-width: 90%;
    }
    
    .modal-caption h3 {
        font-size: 16px;
    }
    
    .modal-caption p {
        font-size: 13px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-brand .logo {
        height: 40px;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Floating actions for small mobile */
    .floating-actions {
        bottom: 12px;
        right: 12px;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }
    
    .fab-item {
        min-width: 65px;
        height: 36px;
        padding: 0 10px;
        margin: 0 auto;
    }
    
    .fab-item:hover {
        transform: scale(1.02);
    }
    
    .fab-icon {
        font-size: 12px;
        font-weight: 600;
    }
    
    .header-nav {
        gap: 6px;
    }
    

    
    .nav-download-btn {
        padding: 8px;
        min-width: auto;
    }
    
    .nav-btn-text {
        display: none;
    }
    
    .nav-download-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .nav-item {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .headline-main,
    .headline-time {
        font-size: 36px;
    }
    
    .headline-sub {
        font-size: 20px;
    }
    
    /* Hero Service Description - Small Mobile */
    .hero-service-description {
        max-width: 95%;
    }
    
    .service-summary {
        padding: 12px 16px;
        margin-bottom: 24px;
    }
    
    .service-types-text {
        font-size: 16px;
    }
    
    .service-delivery-text {
        font-size: 12px;
    }
    
    .service-areas-label {
        font-size: 12px;
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    
    .location-grid {
        gap: 4px;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .location-item {
        padding: 6px 10px;
        font-size: 11px;
        max-width: 120px;
    }
    
    .interest-btn-pro {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .promo-banner {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 24px;
    }
    
    /* Launch Countdown Extra Small Mobile */
    .countdown-header {
        margin-bottom: 20px;
    }
    
    .ready-message {
        font-size: 13px;
        padding: 5px 14px;
        margin-bottom: 10px;
    }
    
    .countdown-title {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .countdown-subtitle {
        font-size: 13px;
        padding: 0 15px;
    }
    
    .countdown-professional {
        margin-bottom: 20px;
        gap: 8px;
    }
    
    .launch-message {
        font-size: 12px;
        padding: 8px 14px;
        margin: 0 15px;
        line-height: 1.3;
    }
    
    .download-promo {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .zoom-indicator {
        font-size: 10px;
        padding: 6px 12px;
        gap: 6px;
    }
    
    .modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
    }
    
    .modal-caption {
        margin-top: 10px;
        padding: 12px;
    }
    
    .modal-caption h3 {
        font-size: 14px;
    }
    
    .modal-caption p {
        font-size: 12px;
    }
    
    /* Extra small mobile - Map area improvements */
    .area-map {
        max-height: 250px;
    }
    
    .map-overlay {
        padding: 10px 8px 8px 8px;
        background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.7));
    }
    
    .area-badges {
        gap: 3px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .area-badge {
        min-width: 60px;
        padding: 3px 5px;
        font-size: 8px;
        flex: 0 1 calc(50% - 2px);
        max-width: 75px;
    }
    
    .badge-name {
        font-size: 10px;
        font-weight: 600;
        line-height: 1.2;
    }
    

    
    /* Partnership section for extra small screens */
    .partnership-grid {
        margin-top: 32px;
    }
    
    .partnership-card {
        padding: 24px 20px;
    }
    
    .partnership-icon {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .partnership-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .partnership-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .partnership-benefits {
        margin-bottom: 24px;
    }
    
    .benefit-item {
        padding: 8px 12px;
        margin-bottom: 8px;
        gap: 8px;
    }
    
    .benefit-icon {
        font-size: 16px;
    }
    
    .benefit-text {
        font-size: 12px;
    }
    
    .partnership-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}