/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #fcc02e;
    --color-coral: #fcc02e;
    --color-orange: #fcc02e;
    --color-dark: #1a1d2e;
    --color-gray: #666;
    --color-light-gray: #f5f5f5;
    --color-white: #ffffff;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    position: relative;
    padding: 1rem 0;
    background: var(--color-white);
}

.header .container {
    padding: 0 5%;
}

.decorative-circles {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.circle {
    position: absolute;
    border: 3px solid rgba(252, 192, 46, 0.35);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}

.circle-1 {
    width: 200px;
    height: 200px;
}

.circle-2 {
    width: 300px;
    height: 300px;
}

.circle-3 {
    width: 400px;
    height: 400px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-links-header .btn-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links-header .btn-social:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.75rem;
}

.logo span {
    background: #fcc02e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.btn-primary {
    background: #fcc02e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 192, 46, 0.4);
}

.btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--color-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 29, 46, 0.2);
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero-content {
    margin-bottom: var(--spacing-lg);
}

.hero-title {
    font-size: clamp(2.375rem, 5vw, 3.875rem);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--color-dark);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
    text-decoration: none;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 29, 46, 0.3);
}

/* Phone Section */
.phone-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: center;
    margin: var(--spacing-xl) auto;
    min-height: 500px;
    max-width: 1200px;
    padding: 0 var(--spacing-md);
}

.text-coral {
    background: #fcc02e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    text-align: right;
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 560px;
}

.text-orange {
    background: #fcc02e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    text-align: left;
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 560px;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: #fcc02e;
    border-radius: 40px;
    border: 8px solid var(--color-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: transform 0.3s ease;
    grid-column: 2;
    justify-self: center;
    overflow: hidden;
}

.phone-mockup:hover {
    transform: scale(1.02);
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: var(--color-dark);
    border-radius: 0 0 12px 12px;
}

.phone-screen {
    text-align: center;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.8;
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.phone-logo {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.phone-text {
    margin: 0;
}

/* Phone Slider Styles */
.phone-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 32px;
}

.phone-screenshot.active {
    opacity: 1;
}

.phone-screenshot-cta {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Trusted Section */
.trusted-section {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.trusted-text {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-gray);
}

.section-sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 3px solid rgba(252, 192, 46, 0.3);
    border-radius: 50%;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
}

.features::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 3px solid rgba(252, 192, 46, 0.2);
    border-radius: 50%;
    bottom: -60px;
    right: 100px;
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.875rem);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: rgba(252, 192, 46, 0.15);
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.feature-card p {
    color: var(--color-gray);
    text-align: center;
    line-height: 1.7;
}


/* Stats Section */
.stats {
    padding: var(--spacing-xl) 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid rgba(252, 192, 46, 0.3);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}

.stats::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(252, 192, 46, 0.25);
    border-radius: 50%;
    bottom: 50px;
    left: -60px;
}

.section-title-dark {
    font-size: clamp(1.875rem, 4vw, 2.875rem);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle-dark {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.stat-card {
    background: linear-gradient(135deg, #fef3d8 0%, #fce6a8 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #fcc02e;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #fcc02e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto var(--spacing-md);
}

.stat-label {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.stat-description {
    color: var(--color-gray);
    font-size: 0.9375rem;
    line-height: 1.7;
    text-align: center;
}

/* Park Owners Section */
.park-owners {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
    position: relative;
    overflow: hidden;
}

.park-owners::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border: 3px solid rgba(252, 192, 46, 0.3);
    border-radius: 50%;
    top: 100px;
    right: -100px;
}

.park-owners::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border: 3px solid rgba(252, 192, 46, 0.25);
    border-radius: 50%;
    bottom: -80px;
    left: 80px;
}

.section-title-light {
    font-size: clamp(1.875rem, 4vw, 2.875rem);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.section-subtitle-light {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.park-card {
    background: linear-gradient(135deg, #fef3d8 0%, #fce6a8 100%);
    border: 1px solid #e0e0e0;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.park-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #fcc02e;
}

.park-step {
    background: #fcc02e;
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border: 3px solid rgba(252, 192, 46, 0.3);
    border-radius: 50%;
    top: -80px;
    left: -70px;
}

.testimonials::after {
    content: '';
    position: absolute;
    width: 190px;
    height: 190px;
    border: 3px solid rgba(252, 192, 46, 0.25);
    border-radius: 50%;
    bottom: 100px;
    right: -50px;
}

.testimonials-title {
    font-size: clamp(1.875rem, 4vw, 2.875rem);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: #f9fafb;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonial-card h4 {
    color: var(--color-dark);
    font-weight: 600;
}

.testimonial-role {
    color: var(--color-gray);
    font-size: 0.875rem;
}

.testimonial-text {
    color: #4b5563;
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border: 3px solid rgba(252, 192, 46, 0.3);
    border-radius: 50%;
    top: 50%;
    left: -120px;
    transform: translateY(-50%);
}

.cta::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border: 3px solid rgba(252, 192, 46, 0.25);
    border-radius: 50%;
    top: -90px;
    right: -80px;
}

.cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.cta-title {
    font-size: clamp(1.875rem, 4vw, 2.875rem);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    justify-content: center;
}

/* Footer */
.footer {
    padding: var(--spacing-lg) 0;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo span {
    background: #fcc02e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    flex: 1;
    justify-content: center;
}

.footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: var(--color-dark);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-right p {
    color: var(--color-gray);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .phone-section {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: 600px;
    }

    .text-coral {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
        font-size: 3rem;
        height: auto;
        justify-content: center;
    }

    .phone-mockup {
        grid-column: 1;
        grid-row: 2;
    }

    .text-orange {
        grid-column: 1;
        grid-row: 3;
        text-align: center;
        font-size: 3rem;
        height: auto;
        justify-content: center;
    }

    .cta .container {
        grid-template-columns: 1fr;
    }

    .cta-phone {
        order: -1;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-dark {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
