/* =============================================
   Mapsense Playground GeoAI Styles
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* =============================================
   SECTION 1: HERO SECTION
   ============================================= */
.hero-section {
    background: linear-gradient(135deg, #1a1a4e 0%, #2d2d7a 50%, #1a1a4e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(100, 100, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(150, 100, 200, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-brand {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.hero-brand .brand-geo {
    color: #f5a623;
}

.hero-brand .brand-playground {
    font-weight: 300;
    color: white;
}

.hero-headline {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-headline .highlight {
    color: #f5a623;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #00c9d4 0%, #00a8b5 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 201, 212, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 201, 212, 0.4);
}

.hero-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-video-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #f5a623, #00c9d4, #7c4dff);
    border-radius: 22px;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

/* =============================================
   SECTION 2: WHY CHOOSE SECTION
   ============================================= */
.why-choose-section {
    background: #ffffff;
    padding: 100px 5%;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a4e;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1a4e 0%, #3d3d8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(26, 26, 78, 0.3);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a4e;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* =============================================
   SECTION 3: FEATURES & DETAILS
   ============================================= */
.features-section {
    background: linear-gradient(135deg, #3d4f5f 0%, #4a5d6a 50%, #3d4f5f 100%);
    padding: 100px 5%;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 15px;
}

.features-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-block:nth-child(even) {
    direction: rtl;
}

.feature-block:nth-child(even)>* {
    direction: ltr;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 15px;
}

.feature-content .highlight-text {
    color: #00c9d4;
    font-weight: 500;
}

/* =============================================
   SECTION 4: CAROUSEL SECTION
   ============================================= */
.carousel-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 5%;
}

.carousel-container {
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-header {
    text-align: center;
    margin-bottom: 60px;
}

.carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a4e;
    margin-bottom: 15px;
}

.carousel-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.carousel-slide {
    flex: 0 0 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-caption {
    padding: 25px;
    background: white;
}

.slide-caption h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a4e;
    margin-bottom: 10px;
}

.slide-caption p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a4e 0%, #3d3d8a 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(26, 26, 78, 0.3);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #1a1a4e 0%, #3d3d8a 100%);
    transform: scale(1.2);
}

/* =============================================
   SECTION 5: PRICING SECTION
   ============================================= */
.pricing-section {
    background: linear-gradient(135deg, #1a1a4e 0%, #2d2d7a 50%, #1a1a4e 100%);
    padding: 100px 5%;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border: 3px solid #f5a623;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f5a623 0%, #e89000 100%);
    color: white;
    padding: 8px 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 15px 15px;
}

.pricing-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    text-align: center;
}

.pricing-card.featured .pricing-card-header {
    background: linear-gradient(135deg, #1a1a4e 0%, #3d3d8a 100%);
}

.pricing-card.featured .plan-name,
.pricing-card.featured .plan-price .price,
.pricing-card.featured .plan-price .period {
    color: white;
}

.plan-tier {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-top: 20px;
}

.plan-price-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a4e;
    margin-bottom: 10px;
}

.plan-period {
    font-size: 0.95rem;
    color: #666;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a4e;
    margin-bottom: 15px;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a4e;
}

.plan-price .period {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.pricing-card-body {
    padding: 30px;
    text-align: center;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    color: #333;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li.disabled {
    color: #999;
}

.pricing-cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #1a1a4e 0%, #3d3d8a 100%);
    color: white;
    padding: 16px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 26, 78, 0.3);
}

.pricing-cta.featured-cta {
    background: linear-gradient(135deg, #f5a623 0%, #e89000 100%);
}

.pricing-cta.featured-cta:hover {
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
}

/* =============================================
   SECTION 6: FOOTER
   ============================================= */
.geoai-footer {
    background: linear-gradient(135deg, #0d0d2b 0%, #1a1a4e 100%);
    padding: 80px 5% 30px;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand h3 span {
    color: #f5a623;
    font-weight: 300;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #f5a623;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00c9d4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f5a623;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-video-container {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-block:nth-child(even) {
        direction: ltr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 5%;
        min-height: auto;
    }

    .hero-brand {
        font-size: 2rem;
    }

    .hero-headline {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        padding: 14px 32px;
        font-size: 0.9rem;
    }

    .section-title,
    .features-title,
    .carousel-title,
    .pricing-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-item {
        padding: 20px;
    }

    .why-choose-section,
    .features-section,
    .carousel-section,
    .pricing-section {
        padding: 70px 5%;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 1rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-brand {
        font-size: 1.6rem;
    }

    .hero-headline {
        font-size: 1.5rem;
    }

    .section-title,
    .features-title,
    .carousel-title,
    .pricing-title {
        font-size: 1.6rem;
    }

    .section-subtitle,
    .features-subtitle,
    .carousel-subtitle,
    .pricing-subtitle {
        font-size: 1rem;
    }

    .carousel-controls {
        flex-wrap: wrap;
    }

    .plan-price .price {
        font-size: 2.5rem;
    }

    .geoai-footer {
        padding: 60px 5% 20px;
    }
}