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

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f5f5f5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

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

/* Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.menu-toggle-btn {
    order: -1;
}

.header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .main-header {
        padding: 8px 0;
    }
    
    .header-container {
        padding: 0 12px;
    }
    
    .logo-link {
        font-size: 1rem;
    }
    
    .header-logo {
        width: 32px;
        height: 32px;
    }
}

.logo-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFD700;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.header-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.admin-link {
    background: #FFD700;
    color: #141414;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.admin-link:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.hero {
    background: #141414;
    color: #FFD700;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    margin-top: 70px;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 50px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

/* Buttons */
.cta-button {
    background: #FFD700;
    color: #141414;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.cta-button:active {
    transform: translateY(0);
}

.hero-button {
    margin-top: 10px;
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #141414;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.step-icon {
    font-size: 3.5rem;
    margin: 20px 0 15px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step-description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: #141414;
    color: #FFD700;
    padding: 80px 20px;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-primary {
    background: #FFD700;
    color: #141414;
    font-size: 1.2rem;
    padding: 18px 50px;
}

/* Mobile Responsive */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .step {
        padding: 50px 30px;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-subtitle {
        font-size: 1.3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .steps-container {
        gap: 40px;
    }
}

/* Footer Styles */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links li {
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    /* Header improvements - make it thinner */
    .main-header {
        padding: 8px 0;
    }

    .header-container {
        padding: 0 12px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .header-logo {
        width: 28px;
        height: 28px;
    }

    .logo-link {
        font-size: 0.85rem;
        gap: 8px;
    }

    .logo-link span {
        display: none;
    }

    .header-links {
        gap: 6px;
        flex-wrap: wrap;
    }

    .header-link {
        padding: 8px 10px;
        font-size: 0.8rem;
        min-height: 36px;
    }

    /* Hero section - adjust top margin for thinner header */
    .hero {
        padding: 40px 16px;
        margin-top: 50px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-button,
    .cta-button {
        width: 100%;
        min-height: 44px;
        padding: 14px;
        font-size: 1rem;
    }

    /* Process section */
    .process-section {
        padding: 60px 16px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step {
        padding: 30px 20px;
    }

    .step-icon {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    /* CTA section */
    .cta-section {
        padding: 60px 16px;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    /* Footer - make it compact and centered */
    .main-footer {
        padding: 20px 16px 16px;
        margin-top: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .footer-section {
        width: 100%;
        min-width: auto;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .footer-text {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .footer-links li {
        width: auto;
        font-size: 0.8rem;
    }

    .footer-links a {
        padding: 4px 0;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        margin: 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

