/* 
 * TEKRAPLAYORBT - Responsive Stylesheet
 * Architecture: Mobile First Scale Up
 */

/* ==========================================================================
   Tablet & Larger (min-width: 768px)
   ========================================================================== */
@media (min-width: 768px) {
    /* Spacing adjustments */
    .section-padding {
        padding: 80px 0;
    }

    /* Grid Layouts */
    .grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Typography adjustments */
    h1 { font-size: 3.5rem; }
    .hero-content h1 { font-size: 4rem; }
    
    /* Layouts */
    .split-layout {
        flex-direction: row;
    }
    
    .split-image, .split-content {
        flex: 1;
    }

    /* Specific components */
    .hero-content {
        margin-left: 5%;
    }

    .experience-badge {
        bottom: -30px;
        right: -30px;
        width: 140px;
        height: 140px;
    }
    
    .experience-badge .years {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   Desktop (min-width: 1024px)
   ========================================================================== */
@media (min-width: 1024px) {
    /* Spacing adjustments */
    .section-padding {
        padding: 100px 0;
    }

    /* Navigation */
    .main-nav {
        display: flex;
        gap: 2.5rem;
    }

    .main-nav a {
        font-family: var(--font-heading);
        font-weight: 500;
        color: var(--accent-primary);
        font-size: 1rem;
        position: relative;
    }

    .main-nav a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-highlight);
        transition: width 0.3s ease;
    }

    .main-nav a:hover::after, .main-nav a.active::after {
        width: 100%;
    }

    .nav-cta {
        display: inline-flex;
    }

    /* Grid Layouts */
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    /* Specific layouts */
    .hero-content {
        max-width: 650px;
    }
    
    .reverse-layout {
        flex-direction: row-reverse;
    }

    .service-row {
        margin-bottom: 100px;
    }
    
    .service-row:last-child {
        margin-bottom: 0;
    }
}