/* ===================================
   REMIK BIKEFIT STUDIO - MAIN STYLES
   Merged and improved version
   =================================== */

/* CSS VARIABLES */
:root {
    --bg-light: #f7f2e7;
    --bg-alt: #fdfbf7;
    --navy: #1e2630;
    --mustard: #d8a84c;
    --text-muted: #5c6470;
    --white: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --transition: all 0.3s ease;
}

/* RESET & BASE STYLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    height: 100%;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    background: var(--navy);
}

/* HEADER - FIXED NAVIGATION */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(30, 38, 48, 0.95) 0%, rgba(30, 38, 48, 0.85) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(216, 168, 76, 0.2);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(30, 38, 48, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    gap: 2rem;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.3;
}

.logo-text strong {
    font-size: 14px;
    font-weight: 700;
}

/* NAVIGATION */
nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(216, 168, 76, 0.15);
    border-color: var(--mustard);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(216, 168, 76, 0.2);
    border-color: var(--mustard);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* SECTIONS */
.section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    scroll-snap-align: start;
    padding: 100px 2rem 60px;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.4;
}

.content {
    z-index: 1;
    padding: 2rem;
    max-width: 1000px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* HERO SECTION */
.hero-section .content {
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    text-align: left;
    max-width: 100%;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    opacity: 0.9;
    color: var(--mustard);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content h1 em {
    font-style: italic;
    color: var(--mustard);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d7dde8;
    line-height: 1.7;
}

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

.hero-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(216, 168, 76, 0.2);
}

.hero-bullets li {
    font-size: 1rem;
    color: #c7cedb;
    padding-left: 2rem;
    position: relative;
    text-align: left;
}

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

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--mustard);
    color: var(--navy);
    border-color: var(--mustard);
}

.btn-primary:hover {
    background: transparent;
    color: var(--mustard);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(216, 168, 76, 0.4);
}

.btn-outline {
    border-color: var(--mustard);
    color: var(--mustard);
    background: transparent;
}

.btn-outline:hover {
    background: var(--mustard);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(216, 168, 76, 0.4);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* TYPOGRAPHY */
h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--mustard);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #d7dde8;
    line-height: 1.7;
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* TEXT CONTENT SECTIONS */
.text-content {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(216, 168, 76, 0.3);
    margin: 2rem 0;
}

.highlight-box h3 {
    margin-top: 0;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-box ul li:last-child {
    border-bottom: none;
}

.highlight-box ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--mustard);
    font-weight: bold;
    font-size: 1.2rem;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(216, 168, 76, 0.2);
    text-align: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--mustard);
    box-shadow: 0 10px 30px rgba(216, 168, 76, 0.2);
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.service-subtitle {
    font-size: 0.95rem;
    color: var(--mustard);
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
}

.service-note {
    font-size: 0.9rem;
    color: #a0a8b5;
    margin-top: 1rem;
    font-style: italic;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--mustard);
    font-weight: bold;
}

/* PROCESS LIST */
.process-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.process-list {
    list-style: none;
    padding: 0;
    counter-reset: process-counter;
}

.process-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(216, 168, 76, 0.2);
    align-items: flex-start;
}

.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--mustard);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--mustard);
    margin-bottom: 0.5rem;
}

.process-text p {
    margin: 0;
    font-size: 1rem;
    color: #c7cedb;
}

.process-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(216, 168, 76, 0.15);
    border-radius: 12px;
    border: 1px solid var(--mustard);
    text-align: center;
}

.process-info p {
    margin: 0;
    font-size: 1.1rem;
}

/* TESTIMONIAL BOX */
.testimonial-box {
    background: rgba(216, 168, 76, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--mustard);
    margin: 2rem 0;
    text-align: center;
}

.testimonial-box blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--mustard);
    margin: 1.5rem 0;
    line-height: 1.6;
}

/* PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 2px solid rgba(216, 168, 76, 0.3);
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--mustard);
    box-shadow: 0 15px 40px rgba(216, 168, 76, 0.3);
}

.pricing-card h3 {
    margin-top: 0;
    font-size: 1.6rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mustard);
    margin: 1.5rem 0;
}

.pricing-description {
    font-size: 0.95rem;
    color: #c7cedb;
}

.pricing-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #a0a8b5;
    font-style: italic;
    text-align: center;
}

/* YOUTUBE VIDEOS */
.youtube-videos {
    margin: 2rem 0;
}

.youtube-videos .video-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #d7dde8;
}

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

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(216, 168, 76, 0.3);
    transition: var(--transition);
}

.video-container:hover {
    border-color: var(--mustard);
    box-shadow: 0 10px 30px rgba(216, 168, 76, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* YOUTUBE CTA */
.youtube-cta {
    text-align: center;
    margin-top: 3rem;
}

/* CONTACT SECTION */
.contact-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(216, 168, 76, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
    color: var(--mustard);
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--mustard);
}

.contact-item span {
    color: #d7dde8;
    font-size: 1.1rem;
}

/* CONTACT FORM */
.contact-form {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(216, 168, 76, 0.3);
}

.contact-form h3 {
    margin-top: 0;
    text-align: center;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--mustard);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

/* FOOTER */
footer {
    background: rgba(30, 38, 48, 0.95);
    border-top: 1px solid rgba(216, 168, 76, 0.3);
    padding: 2rem;
    text-align: center;
}

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

.footer-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #c7cedb;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--mustard);
    color: var(--navy);
    transform: translateY(-3px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    nav {
        gap: 0.3rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 1rem;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(30, 38, 48, 0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid rgba(216, 168, 76, 0.3);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .section {
        padding: 100px 1rem 40px;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-bullets {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .process-list li {
        flex-direction: column;
        text-align: center;
    }
    
    .process-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 9px;
    }
    
    .logo-text strong {
        font-size: 11px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
