/* ===== VARIABLES & RESET ===== */
:root {
    --primary: #f7f3f1;
    --dark: #64615e;
    --dark-light: #b96817;
    --gray: #b6b0ad;
    --light: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #ff7949 0%, #ff8c42 100%);
}

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

html {
    scroll-behavior: smooth;
    overflow: hidden; /* Disable default scrolling */
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow: hidden;
    height: 100vh;
}

/* ===== NAV WRAPPER ===== */
.nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2000;
    pointer-events: none;
}

/* ===== LOGO - CENTERED WITH HOVER ANIMATION ===== */
.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--light);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    right: 140px; /* Center of the 80px nav */
    transform: translate(50%, -50%);
    z-index: 2001; /* Above nav */
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

/* Move logo to top when wrapper is hovered */
.nav-wrapper:hover .logo {
    top: 120px;
    transform: translate(50%, 0);
}

.logo-image {
    height: 300px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3));
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease;
    
}

.nav-wrapper:hover .logo-image {
    height: 120px;
    width: auto;
    
    filter: drop-shadow(0 15px 40px rgba(255, 107, 53, 0.5));
}

.logo-accent {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* ===== NAVIGATION - MINIMALIST EXPANDABLE SIDEBAR ===== */
.nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2000;
    background: rgba(63, 63, 63, 0.95);
    backdrop-filter: blur(10px);
    border-left: 2px solid rgba(255, 107, 53, 0.3);
    height: 100vh;
    width: 80px; /* Minimalist width */
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: auto;
}

.nav-wrapper:hover .nav {
    width: 280px; /* Expanded width */
}

.nav-container {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    height: 100%;
    position: relative;
    padding-top: 240px; /* Space for logo at top when expanded */
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 260px;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
}

.nav-wrapper:hover .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 80%;
}

/* ===== HERO SECTION - SHIFTED LEFT ===== */
.hero-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 80px); /* Account for minimalist sidebar */
    height: 100vh;
    z-index: 1;
    transition: opacity 0.6s ease;
}

.hero-section.hidden {
    opacity: 0;
    pointer-events: none;
}

.rain-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.rain-drop {
    position: absolute;
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(255, 140, 66, 0.8));
    animation: rainfall linear infinite;
    opacity: 0.7;
}

@keyframes rainfall {
    0% { transform: translateY(-100px); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.hero-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 0 0 4rem; /* Shift left with left margin */
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--primary);
    border-radius: 50px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
}

.title-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-feature:last-child {
    grid-column: 1 / -1;
}

.feature-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    color: var(--light);
    font-weight: 500;
}

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

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

.hero-hint {
    text-align: center;
    margin-top: 1rem;
}

.hint-text {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Hero Image */
.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-before {
    position: relative;
    z-index: 2;
}

.hero-image-after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0;
    
    filter: brightness(1.1) saturate(1.2);
}

.image-wrapper:hover .hero-image-after {
    opacity: 1;
    transform: scale(1);
}

.image-wrapper:hover .hero-image-before {
    transform: scale(0.98);
    opacity: 0.3;
}

.image-label {
    position: absolute;
    top: 20px;
    padding: 0.5rem 1.2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    z-index: 5;
    transition: all 0.4s ease;
}

.image-label-before {
    left: 20px;
    background: rgba(255, 107, 53, 0.95);
    color: white;
    border: 2px solid #ff6b35;
}

.image-label-after {
    right: 20px;
    background: rgba(16, 185, 129, 0.95);
    color: white;
    border: 2px solid #10b981;
    opacity: 0;
    transform: translateY(-10px);
}

.image-wrapper:hover .image-label-after {
    opacity: 1;
    transform: translateY(0);
}

.image-wrapper:hover .image-label-before {
    opacity: 0;
    transform: translateY(-10px);
}

.reveal-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #10b981, transparent);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    z-index: 4;
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover .reveal-line {
    left: 100%;
}

/* ===== SECTIONS CONTAINER ===== */
.sections-container {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100vw - 80px); /* Account for minimalist sidebar */
    height: 100vh;
    z-index: 10;
    pointer-events: none;
}

.sections-container.active {
    pointer-events: auto;
}

/* ===== STRIP SECTIONS ===== */
.strip-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    
    /* Smooth transitions */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.8s ease;
    
    /* Initial state - hidden off screen */
    opacity: 0;
    pointer-events: none;
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.strip-section.visible {
    opacity: 1;
    pointer-events: auto;
}

.strip-content {
    max-width: 1200px;
    width: 100%;
    background: rgb(85, 82, 79);
    border: 2px solid rgb(255, 128, 0);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(214, 83, 43, 0.986);
}

.strip-content-contact {
    max-width: 800px;
}

.section-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgb(247, 71, 7);
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(49, 46, 44, 0.5);
}

/* Service Cards */
.service-cards-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-strip {
    background: rgba(247, 241, 241, 0.05);
    border: 1px solid rgba(248, 247, 247, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-strip:hover {
    background: rgba(248, 247, 246, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-icon-strip {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card-strip h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-card-strip p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Tech Grid */
.tech-grid-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.tech-card-strip {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card-strip:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.tech-icon-strip {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tech-card-strip h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.tech-card-strip p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Gallery Placeholder */
.gallery-placeholder {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 107, 53, 0.05);
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 16px;
}

.gallery-placeholder h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.gallery-placeholder p {
    color: var(--gray);
}

/* ===== GALLERY CAROUSEL STYLES ===== */

.strip-content-gallery {
    max-width: 85%;
    padding: 2rem;
    position: relative;
}

.gallery-counter-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(245, 245, 245, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    z-index: 20;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(247, 246, 245, 0.2);
    pointer-events: none;
}

.images-carousel-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
    position: relative;
}

.images-carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    padding: 1rem 0;
    overflow: hidden;
}

.images-carousel-track {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    user-select: none;
}

.images-carousel-track:active {
    cursor: grabbing;
}

.gallery-image-card {
    position: relative;
    width: 280px;
    height: 380px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.85);
    opacity: 0.6;
    border: 2px solid rgba(245, 240, 238, 0.2);
}

.gallery-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-image-card.focused {
    transform: scale(1.0) translateY(-5px);
    opacity: 1;
    
    z-index: 10;
    border-color: rgb(204, 87, 51);
}

.gallery-image-card.far {
    transform: scale(0.7);
    opacity: 0.3;
}

.gallery-image-card:hover {
    border-color: var(--primary);
    box-shadow: 0 3px 30px rgba(250, 247, 247, 0.8),
                0 0 6px rgba(31, 26, 25, 0.5);
}

.gallery-image-card.focused:hover {
    transform: scale(1.02) translateY(-5px);
}

.gallery-image-card.loading {
    background: linear-gradient(135deg, #ea9066 0%, #a2644b 100%);
}

.gallery-image-card.loading::after {
    content: 'Loading...';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.gallery-scroll-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--gray);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    pointer-events: none;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.8; transform: translateX(-50%) translateY(-3px); }
}

/* Fullscreen Image Viewer */
.fullscreen-viewer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fullscreen-viewer.active {
    display: flex;
    opacity: 1;
}

.fullscreen-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.fullscreen-close:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1) rotate(90deg);
}

.fullscreen-counter-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 12px;
    padding: 0.6rem 1.2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--primary);
    z-index: 10001;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.fullscreen-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 3rem 2rem;
    cursor: pointer;
}

.fullscreen-image-container img {
    max-width: 95%;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(255, 107, 53, 0.5);
    transition: transform 0.3s ease;
    animation: enlargeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes enlargeIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.fullscreen-image-container img:hover {
    transform: scale(1.02);
}

.fullscreen-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--gray);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(248, 246, 245, 0.08);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    pointer-events: none;
    z-index: 10001;
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1366px) {
    .gallery-image-card {
        width: 200px;
        height: 280px;
    }
    
    .images-carousel-track {
        height: 340px;
        gap: 1.5rem;
    }
    
    .gallery-counter-overlay {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Contact Form */
.contact-form-strip {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-strip input,
.contact-form-strip select,
.contact-form-strip textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    color: var(--light);
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-strip input:focus,
.contact-form-strip select:focus,
.contact-form-strip textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.btn-submit-strip {
    width: 100%;
    margin-top: 1rem;
}

.contact-info-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--gray);
}

/* Scroll Hint */
.scroll-hint {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--primary);
    z-index: 3000;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== RESPONSIVE ===== */

/* Laptop screens 1366x768 and similar */
@media (max-width: 1440px) and (max-height: 800px) {
    .nav {
        width: 70px; /* Slightly smaller on laptops */
    }
    
    .nav:hover {
        width: 240px;
    }
    
    .hero-section {
        width: calc(100% - 70px);
    }
    
    .sections-container {
        width: calc(100vw - 70px);
    }
    
    .logo-image {
        
        height: 200px;
    }
    
    .hero-grid {
        gap: 2rem;
        padding: 0 2rem;
        margin: 0 0 0 2rem;
    }
    
    .hero-label {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .hero-features {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.95rem;
    }
    
    .hero-hint {
        margin-top: 0.5rem;
    }
    
    .hint-text {
        font-size: 0.85rem;
    }
    
    .image-container {
        max-height: 50vh;
    }
    
    .hero-image {
        max-height: 50vh;
    }
}

@media (max-width: 1024px) {
    .nav {
        width: 100%;
        height: auto;
        border-radius: 0;
        border-left: none;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
        top: 0;
        right: 0;
        left: 0;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.2rem 2rem;
        height: auto;
    }
    
    .nav-menu {
        flex-direction: row;
        gap: 2rem;
    }
    
    .hero-section {
        width: 100%;
    }
    
    .sections-container {
        width: 100vw;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .service-cards-strip {
        grid-template-columns: 1fr;
    }
    
    .tech-grid-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MOBILE NAVIGATION - BOTTOM BAR STYLE ===== */
/* Replaces sidebar with bottom navigation + small logo */

@media (max-width: 768px) {
    /* Mobile touch optimizations */
    body {
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    
    /* Disable scroll on fullscreen and sections */
    body.fullscreen-active,
    .sections-container.active {
        touch-action: none;
    }
    
    /* ===== BOTTOM NAVIGATION BAR ===== */
    .nav-wrapper {
        position: fixed;
        bottom: 0;
        top: auto;
        right: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 3000;
        pointer-events: auto;
    }
    
    .nav {
        position: fixed;
        bottom: 0;
        top: auto;
        right: 0;
        left: 0;
        width: 100%;
        height: 70px;
        border-left: none;
        border-top: 2px solid rgba(255, 107, 53, 0.3);
        border-radius: 0;
        background: rgba(39, 18, 10, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    }
    
    /* Don't expand on mobile */
    .nav-wrapper:hover .nav {
        height: 70px;
        width: 100%;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 0 0.5rem;
        height: 70px;
        gap: 0;
        padding-top: 0;
    }
    
    .nav-menu {
        position: static;
        flex-direction: row;
        gap: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        justify-content: space-around;
        align-items: center;
        padding-top: 0;
        top: auto;
    }
    
    /* Mobile nav links with icons */
    .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        padding: 0.5rem 0.6rem;
        font-size: 0.65rem;
        text-align: center;
        min-width: 55px;
        position: relative;
        transition: all 0.3s ease;
    }
    
    /* Add icons above text */
    .nav-link::before {
        content: '';
        font-size: 1.4rem;
        display: block;
        line-height: 1;
        transition: transform 0.3s ease;
    }
    
    /* Icon mapping */
    .nav-link[data-section="0"]::before { content: 'ðŸ '; }
    .nav-link[data-section="1"]::before { content: 'ðŸ’¼'; }
    .nav-link[data-section="2"]::before { content: 'âš¡'; }
    .nav-link[data-section="3"]::before { content: 'ðŸ“¸'; }
    .nav-link[data-section="4"]::before { content: 'ðŸ“§'; }
    
    /* Remove underline on mobile */
    .nav-link::after {
        display: none;
    }
    
    /* Active state */
    .nav-link.active {
        color: var(--primary);
        background: rgba(255, 107, 53, 0.15);
        border-radius: 10px;
    }
    
    .nav-link.active::before {
        transform: scale(1.2);
    }
    
    /* ===== LOGO - SMALL BOTTOM RIGHT ===== */
    .logo {
        position: fixed;
        bottom: 80px;
        right: 1rem;
        top: auto;
        left: auto;
        transform: none;
        z-index: 3001;
        transition: all 0.3s ease;
    }
    
    /* Logo doesn't move on hover on mobile */
    .nav-wrapper:hover .logo {
        bottom: 80px;
        right: 1rem;
        top: auto;
        transform: none;
    }
    
    .logo-image {
        height: 70px !important;
        width: auto;
        filter: drop-shadow(0 5px 15px rgba(255, 107, 53, 0.5));
        transition: all 0.3s ease;
    }
    
    /* Logo stays same size on hover */
    .nav-wrapper:hover .logo-image {
        height: 70px !important;
    }
    
    /* Optional: Logo pulse animation on tap */
    .logo:active .logo-image {
        transform: scale(0.95);
    }
    
    /* ===== ADJUST CONTENT FOR BOTTOM NAV ===== */
    .hero-section {
        width: 100%;
        padding-bottom: 90px;
    }
    
    .sections-container {
        width: 100vw;
        padding-bottom: 90px;
    }
    
    .strip-section {
        padding: 4rem 1.5rem 120px;
    }
    
    .strip-content {
        padding: 2rem 1.5rem;
    }
    
    /* ===== SCROLL HINT - MOVE UP ===== */
    .scroll-hint {
        bottom: 90px;
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    /* ===== OTHER MOBILE STYLES ===== */
    .section-title {
        font-size: 2rem;
    }
    
    .tech-grid-strip {
        grid-template-columns: 1fr;
    }
    
    .form-row-strip {
        grid-template-columns: 1fr;
    }
    
    .contact-info-strip {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* ===== MOBILE HERO LAYOUT ===== */
    .hero-grid {
        padding: 0 1.5rem 0;
        height: calc(100vh - 90px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .hero-label {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    /* Compact features layout */
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-feature {
        flex: 1;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .hero-feature:last-child {
        grid-column: 1 / -1;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
    
    /* Stack CTA buttons */
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Reduce image size */
    .hero-right {
        max-height: 35vh;
    }
    
    .image-container {
        max-height: 35vh;
    }
    
    .hero-image {
        max-height: 35vh;
        object-fit: contain;
    }
    
    /* Smaller hint */
    .hero-hint {
        margin-top: 0.5rem;
    }
    
    .hint-text {
        font-size: 0.75rem;
    }
    
    /* ===== GALLERY MOBILE ===== */
    .gallery-image-card {
        width: 220px;
        height: 300px;
    }
    
    .images-carousel-track {
        height: 360px;
        gap: 1.5rem;
    }
    
    .gallery-counter-overlay {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        bottom: 90px;
    }
    
    .gallery-scroll-hint {
        font-size: 0.7rem;
        bottom: 90px;
    }
    
    /* ===== FULLSCREEN MOBILE ===== */
    .fullscreen-image-container img {
        max-width: 100%;
        max-height: 85vh;
    }
    
    .fullscreen-close {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }
    
    .fullscreen-counter-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        top: 1rem;
        left: 1rem;
    }
    
    /* ===== TOUCH IMPROVEMENTS ===== */
    .service-card-strip,
    .tech-card-strip {
        min-height: 120px;
        padding: 1.5rem;
    }
    
    .btn {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
}

/* ===== VERY SMALL PHONES ===== */
@media (max-width: 480px) {
    .nav {
        height: 65px;
    }
    
    .nav-container {
        padding: 0 0.25rem;
    }
    
    .nav-link {
        min-width: 50px;
        padding: 0.4rem 0.4rem;
        font-size: 0.6rem;
    }
    
    .nav-link::before {
        font-size: 1.2rem;
    }
    
    .logo {
        bottom: 75px;
        right: 0.75rem;
    }
    
    .logo-image {
        height: 60px !important;
    }
    
    .nav-wrapper:hover .logo-image {
        height: 60px !important;
    }
    
    .hero-grid {
        height: calc(100vh - 75px);
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-label {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    .hero-features {
        gap: 0.4rem;
    }
    
    .hero-feature {
        font-size: 0.75rem;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-right,
    .image-container,
    .hero-image {
        max-height: 30vh;
    }
    
    .scroll-hint {
        bottom: 80px;
    }
    
    .gallery-counter-overlay,
    .gallery-scroll-hint {
        bottom: 80px;
    }
}
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-label {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .hero-features {
        gap: 0.4rem;
    }
    
    .hero-feature {
        font-size: 0.75rem;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-right {
        max-height: 35vh;
    }
    
    .image-container {
        max-height: 35vh;
    }
    
    .hero-image {
        max-height: 35vh;
    }
    
    .nav-container {
        padding: 1rem 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
        font-size: 0.8rem;
    }


/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .strip-section,
    .hero-image,
    * {
        transition: none !important;
        animation: none !important;
    }
}/* ===== ENHANCED RESPONSIVE DESIGN - PROPERLY INTEGRATED ===== */
/* Supports: 720p, 1080p, 2K (1440p), 4K (2160p) */
/* Respects user's custom logo positioning */

/* ===================================================================
   ULTRA-WIDE & 4K DISPLAYS (2560px+)
   ================================================================= */

@media (min-width: 2560px) {
    /* 4K / Ultra-Wide adjustments */
    :root {
        --base-font-size: 1.25rem;
    }
    
    body {
        font-size: var(--base-font-size);
    }
    
    /* Larger logo for 4K - respects user's positioning */
    .logo-image {
        height: 400px !important;
    }
    
    .nav-wrapper:hover .logo-image {
        height: 160px !important; /* Scaled proportionally from user's 120px */
    }
    
    .nav-wrapper:hover .logo {
        top: 140px; /* Scaled from user's 120px */
    }
    
    /* Hero section - scale up */
    .hero-grid {
        max-width: 1800px;
        margin: 0 0 0 4rem;
        padding: 0 4rem;
        gap: 6rem;
    }
    
    .hero-title {
        font-size: clamp(3rem, 5vw, 5rem);
    }
    
    .hero-description {
        font-size: 1.25rem;
        line-height: 1.8;
    }
    
    .hero-label {
        font-size: 1rem;
        padding: 0.6rem 1.4rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .feature-text {
        font-size: 1.15rem;
    }
    
    .btn {
        padding: 1.4rem 2.8rem;
        font-size: 1.2rem;
    }
    
    .hero-image {
        max-height: 70vh;
    }
    
    /* Sections - larger content boxes */
    .strip-content {
        max-width: 1800px;
        padding: 4rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .section-number {
        font-size: 6rem;
    }
    
    /* Service cards larger */
    .service-card-strip {
        padding: 3rem;
    }
    
    .service-icon-strip {
        font-size: 4rem;
    }
    
    .service-card-strip h4 {
        font-size: 1.6rem;
    }
    
    .service-card-strip p {
        font-size: 1.15rem;
    }
    
    /* Tech cards */
    .tech-card-strip {
        padding: 3rem;
    }
    
    .tech-icon-strip {
        font-size: 3.5rem;
    }
    
    .tech-card-strip h4 {
        font-size: 1.4rem;
    }
    
    .tech-card-strip p {
        font-size: 1.1rem;
    }
    
    /* Gallery - larger cards */
    .gallery-image-card {
        width: 380px;
        height: 520px;
    }
    
    .images-carousel-track {
        height: 580px;
        gap: 3rem;
    }
    
    /* Contact form */
    .contact-form-strip input,
    .contact-form-strip select,
    .contact-form-strip textarea {
        padding: 1.4rem;
        font-size: 1.15rem;
    }
    
    /* Navigation */
    .nav {
        width: 100px;
    }
    
    .nav-wrapper:hover .nav {
        width: 320px;
    }
    
    .nav-link {
        font-size: 1.15rem;
        padding: 0.7rem 1.4rem;
    }
}

/* ===================================================================
   2K DISPLAYS (1920px - 2559px) - QHD/1440p
   ================================================================= */

@media (min-width: 1920px) and (max-width: 2559px) {
    :root {
        --base-font-size: 1.1rem;
    }
    
    body {
        font-size: var(--base-font-size);
    }
    
    .logo-image {
        height: 350px;
    }
    
    .nav-wrapper:hover .logo-image {
        height: 140px; /* Scaled from user's 120px */
    }
    
    .nav-wrapper:hover .logo {
        top: 130px; /* Scaled from user's 120px */
    }
    
    .hero-grid {
        max-width: 1600px;
        margin: 0 0 0 3rem;
        padding: 0 3rem;
        gap: 5rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 4vw, 4.5rem);
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 1.2rem 2.4rem;
        font-size: 1.1rem;
    }
    
    .strip-content {
        max-width: 1600px;
        padding: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .service-card-strip {
        padding: 2.5rem;
    }
    
    .service-icon-strip {
        font-size: 3.5rem;
    }
    
    .gallery-image-card {
        width: 320px;
        height: 440px;
    }
    
    .images-carousel-track {
        height: 500px;
        gap: 2.5rem;
    }
}

/* ===================================================================
   FULL HD (1600px - 1919px) - Standard 1080p upper range
   ================================================================= */

@media (min-width: 1600px) and (max-width: 1919px) {
    .hero-grid {
        max-width: 1400px;
        gap: 4rem;
    }
    
    .logo-image {
        height: 320px;
    }
    
    .nav-wrapper:hover .logo-image {
        height: 130px;
    }
    
    .nav-wrapper:hover .logo {
        top: 125px;
    }
    
    .strip-content {
        max-width: 1400px;
    }
    
    .gallery-image-card {
        width: 300px;
        height: 400px;
    }
}

/* ===================================================================
   STANDARD 1080p (1441px - 1599px) - YOUR BASE DESIGN
   ================================================================= */

@media (min-width: 1441px) and (max-width: 1599px) {
    .hero-grid {
        max-width: 1300px;
        gap: 3.5rem;
    }
    
    /* User's custom logo settings remain unchanged */
    .logo-image {
        height: 300px;
    }
    
    .nav-wrapper:hover .logo-image {
        height: 120px; /* User's setting */
    }
    
    .nav-wrapper:hover .logo {
        top: 120px; /* User's setting */
    }
    
    .strip-content {
        max-width: 1300px;
    }
}

/* ===================================================================
   720p & SMALL 1080p (1280px - 1440px)
   ================================================================= */

@media (min-width: 1280px) and (max-width: 1440px) {
    .hero-grid {
        max-width: 1200px;
    }
    
    .logo-image {
        height: 280px;
    }
    
    .nav-wrapper:hover .logo-image {
        height: 110px;
    }
    
    .nav-wrapper:hover .logo {
        top: 115px;
    }
}