/* Scrumwheel - Main Styles */

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

:root {
    --blaze-orange: #F97316;
    --blaze-light: #fb923c;
    --deep-obsidian: #0F172A;
    --bone-white: #FDFBF7;
    --text-dark: #020617;
    --text-light: #F8FAFC;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --emerald-500: #10b981;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bone-white);
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-obsidian);
}

::-webkit-scrollbar-thumb {
    background: var(--blaze-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

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

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.logo-accent {
    color: var(--blaze-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--slate-300);
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: white;
}

.nav-link.active {
    color: var(--blaze-orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--blaze-orange);
    border-radius: 2px;
}

.btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--blaze-orange);
    color: white;
}

.btn-primary:hover {
    background: #ea580c;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--slate-700);
    color: var(--slate-300);
}

.btn-secondary:hover {
    border-color: var(--blaze-orange);
    color: white;
}

.btn-lg {
    padding: 1.5rem 2rem;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: var(--slate-700);
}

.btn-outline:hover {
    border-color: var(--blaze-orange);
    color: var(--blaze-orange);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--slate-800);
    padding: 1.5rem;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--deep-obsidian);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent);
    border-radius: 50%;
    filter: blur(100px);
}

.hero-glow-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-glow-2 {
    top: 5rem;
    right: 5rem;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05), transparent);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 8rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #fb923c;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--blaze-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-accent {
    color: var(--blaze-orange);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--slate-400);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 40rem;
}

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

.hero-visual {
    position: relative;
}

.wheel-animation {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

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

.section-light {
    background: var(--bone-white);
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--blaze-orange);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.125rem;
    color: var(--slate-600);
    max-width: 42rem;
    margin: 0 auto;
}

.section-dark .section-text {
    color: var(--slate-400);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.section-dark .card {
    background: rgba(30, 41, 59, 0.5);
    border-color: var(--slate-700);
}

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

.section-dark .card:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--blaze-orange);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--slate-600);
    line-height: 1.6;
}

.section-dark .card-text {
    color: var(--slate-400);
}

/* Testimonials */
.testimonial-container {
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
    padding: 3rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: rgba(249, 115, 22, 0.3);
    font-size: 3rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.star {
    color: var(--blaze-orange);
    fill: var(--blaze-orange);
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--slate-300);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

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

.author-info h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--slate-400);
    font-size: 0.875rem;
}

.testimonial-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--slate-700);
    background: transparent;
    color: var(--slate-400);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    border-color: var(--blaze-orange);
    color: var(--blaze-orange);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--slate-600);
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    width: 2rem;
    background: var(--blaze-orange);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: linear-gradient(to bottom right, #f1f5f9, #e2e8f0);
    border-radius: 1rem;
    padding: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blaze-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--slate-600);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--deep-obsidian);
    border-top: 1px solid var(--slate-800);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 20rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

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

.footer-text {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--blaze-orange);
}

.footer-section h4 {
    color: white;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--slate-500);
    font-size: 0.875rem;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-text {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blaze-orange);
}

.info-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-value {
    color: #ea580c;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.info-desc {
    color: var(--slate-500);
    font-size: 0.875rem;
}

.why-box {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.why-box h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--slate-700);
    font-size: 0.875rem;
}

.why-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--blaze-orange);
    border-radius: 50%;
}

.form-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.form-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--slate-700);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background: rgba(248, 250, 252, 0.5);
    font-family: inherit;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--blaze-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--slate-400);
    margin-top: 0.5rem;
}

.form-error {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.5rem;
    display: none;
}

.form-error.show {
    display: block;
}

.success-message {
    text-align: center;
    padding: 3rem 0;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.success-message p {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
}

.email-section {
    background: var(--deep-obsidian);
    padding: 5rem 0;
    text-align: center;
}

.email-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.email-section p {
    color: var(--slate-400);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 9999px;
    padding: 1rem 2rem;
    color: #fb923c;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all 0.2s;
}

.email-link:hover {
    color: var(--blaze-orange);
    border-color: rgba(249, 115, 22, 0.5);
}

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

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 6rem 0 4rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .navbar-container,
    .container {
        padding: 0 1.5rem;
    }

    .stats-grid {
        padding: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* Utilities */
.hidden {
    display: none;
}