/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* Loader Animation - Keep original design */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOutLoader 0.5s ease-in-out 4s forwards;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-drawing-container {
    position: relative;
    width: 500px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.logo-reveal {
    position: relative;
    width: 240px;
    height: auto;
    overflow: hidden;
}

.drawing-logo {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 1;
    transform: scale(1);
}

.drawing-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    animation: drawingReveal 4s ease-in-out forwards;
    z-index: 2;
}

.logo-shadow {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    filter: blur(35px);
    opacity: 0;
    animation: shadowAppear 0.5s ease-in-out 2s forwards;
    z-index: -1;
}

.loader-text {
    opacity: 0;
    transform: translateY(20px);
    animation: showText 0.8s ease-out 2.2s forwards;
}

.brand-name {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.tagline {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #cccccc;
}

/* Keyframe Animations */
@keyframes drawingReveal {
    0% { clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%); }
    25% { clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%); }
    50% { clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%); }
    75% { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
    100% { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); opacity: 0; }
}

@keyframes shadowAppear { to { opacity: 1; } }
@keyframes showTM { to { opacity: 1; } }
@keyframes showText { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeOutLoader { to { opacity: 0; visibility: hidden; } }

/* Promo Modal */
.promo-modal {
    position: fixed;
    inset: 0;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 10050; /* above navbar (1000) and scroll bar (10001 bar only at top) */
}

.promo-modal.is-open { display: flex; }

.promo-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
}

.promo-dialog {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(92vw, 560px);
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: translateY(10px);
    opacity: 0;
    animation: promoIn 280ms cubic-bezier(.2,.8,.2,1) forwards;
}

.promo-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.promo-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.promo-close:hover { background: rgba(0,0,0,0.8); }

@media (max-width: 480px) {
    .promo-dialog { width: 94vw; max-width: 94vw; }
}

/* Handle very short landscape heights */
@media (max-height: 500px) and (orientation: landscape) {
    .promo-dialog { width: 88vw; max-height: 80vh; }
    .promo-image { max-height: 80vh; }
}

@keyframes promoIn {
    to { transform: translateY(0); opacity: 1; }
}

/* Confetti styles removed in favor of canvas-confetti library */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
 /* Gap between logo and text */
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.lang-link:hover {
    color: #ff6b35;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1); /* Make logo white */
    transition: opacity 0.3s ease;
}

.nav-logo-img:hover {
    opacity: 0.8;
}

.search-btn, .menu-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.search-btn:hover, .menu-btn:hover {
    color: #00ff88;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-icon span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    pointer-events: none;
}

.side-text-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.8rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.side-controls-right {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-circle svg {
    transform: rotate(-90deg);
}

/* Main Content */
.main-content {
    margin-top: 0;
}

.section {
    min-height: 100vh;
    padding: 0;
    position: relative;
}

/* Hero Section */
.hero-section {
    background: #000000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    position: relative;
}

.hero-straps {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

/* Strap base */
.strap {
    position: absolute;
    left: -15vw; /* extend beyond viewport for clean edges */
    right: -15vw;
    height: clamp(42px, 6vw, 72px);
    display: flex;
    align-items: center;
    transform-origin: center;
    overflow: visible;
}

.strap .strap-track {
    width: 140%;
    display: flex;
    gap: clamp(18px, 2.4vw, 36px);
    align-items: center;
    justify-content: space-around;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-size: clamp(12px, 1.5vw, 18px);
    white-space: nowrap;
}

.strap .dot {
    color: #00ff88; /* orange */
    margin: 0 clamp(10px, 1.2vw, 16px);
}

/* Light (white) strap */
.strap--light {
    background: #ffffff;
    color: #000000;
    top: 8%;
    transform: rotate(30deg) translateY(-250%);
}

/* Dark (black) strap */
.strap--dark {
    background: #1a1a1a;
    color: #ffffff;
    top: 82%;
    transform: rotate(340deg) translateY(107%); /* -14deg */
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

/* Ensure hero text sits above/below as desired */
.hero-main-text { position: relative; z-index: 3; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .strap { left: -20vw; right: -20vw; }
    .strap--light { top: 10%; transform: rotate(30deg) translateY(-100%); }
    .strap--dark { top: 58%; transform: rotate(344deg); }
}

@media (max-width: 768px) {
    .strap { 
        display: none;
    }
}

@media (max-width: 480px) {
    .strap { 
        display: none;
    }
}

.hero-main-text {
    max-width: 800px;
    margin-left: 8%;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.title-line {
    display: block;
    margin-bottom: 0.1em;
}

.text-gray {
    color: #666666;
}

.brand-green {
    color: #00ff88;
}

/* Horizontal Scrolling Banner */
.scrolling-banner {
    display: none;
}

.scrolling-text {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* About Section */
.about-section {
    background: #000000;
    padding: 8rem 2rem;
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.about-header {
    margin-bottom: 4rem;
    margin-left: 8%;
}

.section-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 2px;
    background: #ffffff;
}

.underlined-text {
    border-bottom: 2px solid #00ff88;
    padding-bottom: 0.5rem;
}

.about-content {
    position: relative;
    max-width: 100%;
    margin-left: auto;
    margin-right: 2%;
}

/* About grid with left logo and right content */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
    max-width: 1200px;
    margin: 0 auto;
}

.about-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo {
    width: min(320px, 36vw);
    height: auto;
    filter: brightness(0) invert(1);
}

.about-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    margin-top: 8rem;
    letter-spacing: -0.01em;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.brand-highlight {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.5rem;
}

.contact-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: underline;
    transition: color 0.3s ease;
    margin: 0 auto;
}

.contact-btn:hover {
    color: #ff6b35;
}

.background-number {
    position: absolute;
    top: -2rem;
    right: -2rem;
    font-size: 15rem;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    line-height: 1;
}

/* Services Section */
.services-section {
    background: #000000;
    padding: 8rem 2rem;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    margin-left: 8%;
    margin-right: 2%;
    position: relative;
}

.services-header {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.service-card {
    padding: 0;
}

.service-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 400;
}

.know-more-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.know-more-btn:hover {
    color: #00ff88;
}

.background-text {
    position: absolute;
    bottom: -4rem;
    left: 0;
    right: 0;
    font-size: clamp(8rem, 15vw, 20rem);
    font-weight: 100;
    color: rgba(255, 255, 255, 0.02);
    text-align: center;
    z-index: -1;
    line-height: 1;
    letter-spacing: -0.05em;
}

/* Portfolio Section */
.portfolio-section {
    background: #000000;
    padding: 8rem 2rem;
    position: relative;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    margin-left: 8%;
    margin-right: 2%;
    position: relative;
}

.portfolio-header {
    margin-bottom: 4rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.portfolio-item {
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffff;
}

.portfolio-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    background: #000000;
    padding: 8rem 0;
}

.contact-section .container {
    max-width: 1400px;
    margin: 0 auto;
    margin-left: 8%;
    margin-right: 2%;
    padding: 0 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.create-text {
    font-weight: 300;
    font-style: italic;
}

.light-text {
    font-weight: 300;
    font-style: italic;
}

.bold-green {
    color: #00ff88;
    font-weight: 900;
}

.contact-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 1.2rem;
    color: #888888;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-value {
    font-size: 1.4rem;
    font-weight: 600;
}

/* Contact Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input,
.form-textarea {
    background: transparent;
    border: 2px solid #333333;
    color: #ffffff;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #888888;
}

.form-submit {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.form-submit:hover {
    background: #cccccc;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #111111;
    padding: 3rem 0;
    border-top: 1px solid #333333;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    height: 150px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: #888888;
    font-size: 0.9rem;
}

.footer-brand {
    color: #00ff88;
}

/* Utility Animations */
@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design - Enhanced for All Screen Sizes */

/* Large Desktop (1440px+) */
@media (min-width: 1441px) {
    .hero-title {
        font-size: clamp(4rem, 6vw, 8rem);
    }
    
    .section-title {
        font-size: clamp(3rem, 4vw, 5rem);
    }
    
    .main-content {
        max-width: 1600px;
        margin: 0 auto;
    }
}

/* Desktop (1024px - 1440px) */
@media (max-width: 1440px) and (min-width: 1025px) {
    .hero-title {
        font-size: clamp(3.5rem, 5vw, 6rem);
    }
    
    .section-title {
        font-size: clamp(2.5rem, 3.5vw, 4rem);
    }
    
    .hero-section {
        padding: 0 3%;
    }
    
    .about-section, .services-section, .portfolio-section {
        padding: 6rem 3%;
    }
}

/* Tablet Landscape (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-title {
        font-size: clamp(3rem, 6vw, 5rem);
    }
    
    .section-title {
        font-size: clamp(2rem, 4vw, 3.5rem);
        text-align: center;
    }
    
    .hero-main-text {
        margin-left: 6%;
        text-align: center;
    }
    
    .about-header {
        margin-left: 6%;
        text-align: center;
    }
    
    .services-container, .portfolio-container {
        margin-left: 6%;
        margin-right: 4%;
    }

    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-section {
        padding: 0 4%;
    }
    
    .about-section, .services-section, .portfolio-section {
        padding: 5rem 4%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-section .container {
        margin-left: 6%;
        margin-right: 4%;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
}


/* Tablet Portrait (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .top-nav {
        flex-direction: row;
        gap: 2rem;
        padding: 1rem 2rem;
        justify-content: center;
        align-items: center;
    }
    
    .language-links {
        display: flex;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .nav-controls {
        display: none;
    }
    
    .search-btn, .menu-btn {
        font-size: 0.85rem;
    }
    
    .menu-icon span {
        width: 18px;
        height: 1.5px;
    }
    
    .scrolling-banner {
        position: fixed;
        bottom: 2rem;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0.6rem 0;
        z-index: 1000;
    }
    
    .scrolling-text {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 4rem 2rem;
        min-height: 80vh;
    }
    
    .hero-main-text {
        margin-left: 8%;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
        text-align: center;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        text-align: center;
    }
    
    .about-header {
        margin-left: 4%;
        text-align: center;
    }
    
    .services-container, .portfolio-container {
        margin-left: 8%;
        margin-right: 4%;
    }
    
    .about-section, .services-section, .portfolio-section {
        padding: 5rem 2rem;
    }
    
    .about-content { margin-left: 8%; margin-right: 2%; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-logo { width: min(300px, 50vw); }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .background-number, .background-text {
        display: none;
    }
    
    .side-text-left, .side-controls-right {
        display: none;
    }
    
    .brand-name {
        font-size: 1.6rem;
    }
}

/* Mobile Large (375px - 480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0;
    }
    
    .top-nav {
        padding: 0.5rem 1rem;
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .language-links {
        display: flex;
    }
    
    .brand-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .nav-controls {
        display: none;
    }
    
    .search-btn, .menu-btn {
        font-size: 0.8rem;
    }
    
    .menu-icon span {
        width: 16px;
        height: 1.5px;
    }
    
    .hero-section {
        padding: 3rem 1rem;
        min-height: 70vh;
    }
    
    .hero-main-text {
        margin-left: 10%;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        text-align: center;
        line-height: 1.1;
    }
    
    .scrolling-banner {
        position: fixed;
        bottom: 1.5rem;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0.5rem 0;
        z-index: 1000;
    }
    
    .scrolling-text {
        font-size: 0.9rem;
        letter-spacing: 0.05em;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        text-align: center;
    }
    
    .about-header {
        margin-left: 0;
        text-align: center;
    }
    
    .services-container, .portfolio-container {
        margin-left: 10%;
        margin-right: 2%;
    }
    
    .about-section, .services-section, .portfolio-section {
        padding: 4rem 1rem;
    }
    
    .about-content { margin-left: 10%; margin-right: 2%; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .about-logo { width: min(220px, 60vw); }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-image {
        height: 250px;
    }
    
    .service-card, .portfolio-item {
        padding: 1.5rem 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section .container {
        margin-left: 12%;
        margin-right: 2%;
    }
    
    .form-input, .form-textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .form-submit {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .footer-logo-img {
        height: 120px;
    }
}

/* Mobile Small (320px - 374px) */
@media (max-width: 374px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .top-nav {
        padding: 0.6rem 0.8rem;
        gap: 1.2rem;
        justify-content: center;
    }
    
    .language-links {
        display: flex;
    }
    
    .brand-text {
        font-size: 0.9rem;
    }
    
    .nav-controls {
        display: none;
    }
    
    .search-btn, .menu-btn {
        font-size: 0.75rem;
    }
    
    .menu-icon span {
        width: 14px;
        height: 1px;
    }
    
    .hero-section {
        padding: 2rem 0.8rem;
        min-height: 60vh;
    }
    
    .hero-main-text {
        margin-left: 12%;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        line-height: 1.1;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 8vw, 1.8rem);
        text-align: center;
    }
    
    .about-section, .services-section, .portfolio-section {
        padding: 3rem 0.8rem;
    }
    
    .about-content {
        margin-left: 12%;
        margin-right: 2%;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        gap: 1.2rem;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .service-card, .portfolio-item {
        padding: 1.2rem 0.8rem;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .form-input, .form-textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-submit {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .footer-logo-img {
        height: 100px;
    }
    
    .scrolling-banner {
        bottom: 1rem;
        padding: 0.4rem 0;
    }
    
    .scrolling-text {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
    .navbar {
        padding: 0.4rem 0;
    }
    
    .top-nav {
        padding: 0.5rem;
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .language-links {
        display: flex;
    }
    
    .brand-text {
        font-size: 0.85rem;
    }
    
    .nav-controls {
        display: none;
    }
    
    .hero-section {
        padding: 1.5rem 0.5rem;
        min-height: 50vh;
    }
    
    .hero-main-text {
        margin-left: 15%;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 10vw, 2rem);
        line-height: 1.2;
    }
    
    .section-title {
        font-size: clamp(1.2rem, 9vw, 1.5rem);
    }
    
    .about-section, .services-section, .portfolio-section {
        padding: 2.5rem 0.5rem;
    }
    
    .about-content {
        margin-left: 15%;
        margin-right: 2%;
    }
    
    .services-grid {
        gap: 1.2rem;
    }
    
    .portfolio-grid {
        gap: 1rem;
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .service-card, .portfolio-item {
        padding: 1rem 0.6rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .footer-logo-img {
        height: 80px;
    }
    
    .scrolling-text {
        font-size: 0.7rem;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .navbar {
        padding: 0.4rem 0;
    }
    
    .top-nav {
        padding: 0.5rem 1rem;
    }
    
    .hero-section {
        min-height: 90vh;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 5vh, 2.5rem);
        line-height: 1;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vh, 2rem);
    }
    
    .about-section, .services-section, .portfolio-section {
        padding: 3rem 1rem;
    }
    
    .scrolling-banner {
        bottom: 1rem;
        padding: 0.3rem 0;
    }
    
    .scrolling-text {
        font-size: 0.8rem;
    }
    
    /* Make straps less prominent in landscape */
    .strap {
        height: clamp(20px, 4vh, 30px);
    }
    
    .strap .strap-track {
        font-size: clamp(7px, 1.5vh, 10px);
        gap: clamp(8px, 1.5vh, 12px);
    }
}