/* PRO ACCESS Website - Precision Orange Theme */
/* Colors: Black #000, White #FFF, Orange #FF6B35 */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
    --black: #000000;
    --white: #FFFFFF;
    --orange: #FF6B35;
    --orange-hover: #E55A2B;
    --gray-light: #F5F5F5;
    --gray-medium: #999999;
    --gray-dark: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 56px; }
h2 { font-size: 42px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
}

/* Header/Navigation */
header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    margin-left: 4px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #E5E5E5;
        gap: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-orange:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-white:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Hero Section */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    margin-bottom: 24px;
}

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

.hero-subtext {
    font-size: 20px;
    color: var(--gray-medium);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--white);
}

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

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.problem-card {
    text-align: center;
    padding: 30px;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.problem-card p {
    color: var(--gray-dark);
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.solution-section h2 {
    margin-bottom: 40px;
}

.solution-points {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
}

.solution-points strong {
    color: var(--orange);
}

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

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

.section-label {
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 12px;
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.service-card h3 {
    margin-bottom: 16px;
}

.service-card p {
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.service-price {
    font-weight: 600;
    color: var(--orange);
    font-size: 18px;
    margin-bottom: 12px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-dark);
}

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

/* Stats Bar */
.stats-section {
    padding: 80px 0;
    background: var(--orange);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-sub {
    font-size: 14px;
    opacity: 0.9;
}

/* Credentials Section */
.credentials-section {
    padding: 100px 0;
    background: var(--white);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.credential-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.credential-text strong {
    display: block;
    margin-bottom: 4px;
    color: var(--black);
}

.credential-text span {
    color: var(--gray-dark);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 40px;
}

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

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-medium);
    line-height: 1.6;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-medium);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 60px auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #E5E5E5;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

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

/* Workshop Detail */
.workshop-detail {
    padding: 60px 0;
}

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

.workshop-price {
    font-size: 32px;
    color: var(--orange);
    font-weight: 700;
    margin: 20px 0;
}

.workshop-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.workshop-main h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.workshop-main ul {
    list-style: none;
    margin: 20px 0;
}

.workshop-main ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.workshop-main ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.workshop-sidebar {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-item {
    margin-bottom: 30px;
}

.sidebar-item h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.sidebar-item p {
    color: var(--gray-dark);
}

@media (max-width: 768px) {
    .workshop-content {
        grid-template-columns: 1fr;
    }
    
    .workshop-sidebar {
        position: static;
    }
}

/* About Page */
.about-hero {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h1 {
    margin-bottom: 40px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.brand-meaning {
    padding: 80px 0;
    background: var(--orange);
    color: var(--white);
    text-align: center;
}

.brand-meaning h2 {
    margin-bottom: 24px;
}

.brand-meaning p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
