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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Brand Colors */
:root {
    --primary-purple: #9340BF;
    --primary-coral: #BF5440;
    --primary-green: #6CBF40;
    --primary-blue: #40ABBF;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-cta {
    background: var(--primary-coral);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-purple);
    transform: translateY(-1px);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--primary-purple);
    transition: opacity 0.3s;
}

.header-brand:hover {
    opacity: 0.8;
}

.header-logo {
    height: 50px;
    width: auto;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 60px 0;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-coral);
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.value-bullets ul {
    list-style: none;
    margin-bottom: 30px;
}

.value-bullets li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.value-bullets li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Form Styles */
.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: var(--text-dark);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-purple);
    font-size: 1.8rem;
}

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

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

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(64, 171, 191, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-coral));
    color: var(--white);
    border: none;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 15px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(191, 84, 64, 0.3);
}

.privacy-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Value Section */
.value-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.value-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trust-section h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.trust-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.claw-machine-highlight {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.claw-machine-highlight h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.claw-machine-highlight ul {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.claw-machine-highlight li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.claw-machine-highlight li:before {
    content: "🎮";
    position: absolute;
    left: 0;
}

/* Secondary CTA */
.secondary-cta {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.secondary-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.secondary-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.secondary-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-purple);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .header-logo {
        height: 40px;
    }
    
    .hero {
        padding: 40px 0;
        min-height: calc(100vh - 70px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .value-section h2,
    .trust-section h2,
    .secondary-cta h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .cta-button {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ====================================== */
/* HOME PAGE SPECIFIC STYLES */
/* ====================================== */

/* Home Hero Enhancements */
.hero-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--white);
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.claw-machine-showcase {
    position: relative;
    max-width: 400px;
}

.showcase-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-coral);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.machine-placeholder {
    background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.machine-screen {
    font-size: 4rem;
    margin-bottom: 20px;
}

.machine-body {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.prize-area {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.prize-item {
    font-size: 2rem;
    opacity: 0.7;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 2px solid var(--primary-purple);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-purple);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.service-features li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-coral);
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Why Choose Us Section */
.why-section {
    padding: 80px 0;
    background: var(--white);
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-section h2 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 40px;
}

.why-features {
    display: grid;
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    font-size: 2rem;
    min-width: 50px;
}

.why-details h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

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

.why-stats {
    display: grid;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-coral);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-info h4 {
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--primary-coral);
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section > .container > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 2rem;
}

.contact-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-area {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-coral);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Mobile Responsive Additions */
/* Hamburger Menu - Desktop Hidden */
.hamburger-menu {
    display: none;
}

.nav-overlay {
    display: none;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 0 30px 0;
        gap: 0;
        z-index: 1000;
        transition: right 0.3s ease-in-out;
    }
    
    .nav.nav-open {
        right: 0;
    }
    
    .nav .nav-link {
        padding: 20px 30px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1.1rem;
        transition: background-color 0.2s;
    }
    
    .nav .nav-link:hover {
        background-color: var(--light-gray);
    }
    
    .nav .nav-cta {
        margin: 20px 30px;
        padding: 15px 20px;
        text-align: center;
        border-bottom: none;
    }
    
    .hero-features {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .cta-button,
    .hero-buttons .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button,
    .cta-buttons .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Hamburger Menu Button */
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        transition: transform 0.3s;
    }
    
    .hamburger-menu:hover {
        transform: scale(1.1);
    }
    
    .hamburger-line {
        width: 100%;
        height: 3px;
        background-color: var(--text-dark);
        border-radius: 2px;
        transition: 0.3s;
        transform-origin: center;
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile Menu Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}