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

:root {
    --white: #fefefe;
    --warm-white: #f9f9f9;
    --light-gray: #f5f5f4;
    --medium-gray: #e5e7eb;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --text-dark: #1f2937;
    --accent: #f97316;
    --accent-hover: #ea580c;
    --furniture-color: #8B4513;
    --outdoor-color: #059669;
    --commercial-color: #7C3AED;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-cta {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.nav-cta:hover {
    color: var(--accent-hover);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-image-fallback {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(31, 41, 55, 0.3) 0%,
        rgba(31, 41, 55, 0.1) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: -1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    padding: 1.25rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-cta::after {
    content: '→';
    transition: transform 0.3s ease;
}

.hero-cta:hover::after {
    transform: translateX(4px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
}

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

/* Section Styling */
.section {
    padding: 0 2rem;
    margin-bottom: 8rem;
}

.section:last-child {
    margin-bottom: 0;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 300;
    line-height: 1.7;
}

/* About Section */
#about {
    padding-top: 6rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--warm-white) 100%);
    border-radius: 2px;
    margin: 2rem 1rem;
    padding: 6rem 3rem 4rem 3rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-top: 0;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    border-top: 1px solid var(--medium-gray);
    padding-top: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 200;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 300;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.styled-portrait {
    max-width: 100%;
    width: 380px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
}

.product-card {
    transition: all 0.4s ease;
    cursor: pointer;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.video-overlay-card {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    border-radius: 24px;
}

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

.product-bg-image {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.product-text-overlay {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 3rem;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.product-title {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 1) !important;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.product-description {
    color: #ffffff !important;
    font-weight: 500 !important;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 1) !important;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.product-link {
    color: white !important;
    border: 2px solid white !important;
    padding: 1.2rem 2.5rem;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700 !important;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.08em;
    text-shadow: none;
}

.product-link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 1) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.product-link::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.product-link:hover::after {
    transform: translateX(6px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Process Section */
#process {
    background: linear-gradient(135deg, var(--white) 0%, var(--warm-white) 100%);
    border-radius: 2px;
    margin: 2rem 1rem;
    padding: 4rem 3rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.process-step {
    text-align: left;
}

.process-number {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.process-description {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Clients Section - Premium Magic */
.clients-section {
    background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.clients-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.clients-header h3 {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.clients-header p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.clients-marquee {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

.clients-track {
    display: flex;
    animation: luxury-scroll 45s linear infinite;
    width: max-content;
}

.client-item {
    flex: 0 0 auto;
    margin: 0 2rem;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 320px;
    text-align: center;
}

.client-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.client-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(249, 115, 22, 0.2);
}

.client-item:hover::before {
    opacity: 1;
}

.client-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
}

.client-item:hover .client-name {
    color: var(--accent);
    transform: translateY(-2px);
}

.client-badge {
    display: none;
}

@keyframes luxury-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on section hover for better UX */
.clients-section:hover .clients-track {
    animation-play-state: paused;
}

/* Secondary row for even more luxury */
.clients-marquee-reverse {
    margin-top: 1rem;
}

.clients-marquee-reverse .clients-track {
    animation-direction: reverse;
    animation-duration: 50s;
}

.clients-marquee-reverse .client-item {
    background: rgba(249, 115, 22, 0.04);
    border-color: rgba(249, 115, 22, 0.1);
}

/* Premium glow effect */
.clients-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    box-shadow: 0 0 20px var(--accent);
}

/* Contact Section - Professional Redesign */
#contact {
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--white) 50%, var(--warm-white) 100%);
    border-radius: 2px;
    margin: 2rem 1rem;
    padding: 6rem 3rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--furniture-color) 50%, var(--outdoor-color) 100%);
}

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

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Company Info Card */
.company-info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.company-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    border-radius: 16px 16px 0 0;
}

.company-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--medium-gray);
}

.company-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.company-logo-section img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.company-name {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.company-tagline {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 0.5rem;
    font-weight: 300;
}

.company-details {
    display: grid;
    gap: 2rem;
}

.detail-group {
    display: grid;
    gap: 1.5rem;
}

.detail-item {
    border-left: 3px solid var(--light-gray);
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-left-color: var(--accent);
    transform: translateX(4px);
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.6;
}

.detail-value strong {
    font-weight: 500;
    color: var(--text-dark);
}

/* Business Credentials */
.business-credentials {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.credentials-title {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.credentials-grid {
    display: grid;
    gap: 1rem;
}

.credential-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.credential-item:last-child {
    border-bottom: none;
}

.credential-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 400;
}

.credential-value {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    font-family: 'Courier New', monospace;
}


/* Contact Methods */
.contact-methods-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.contact-methods-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--outdoor-color) 0%, transparent 100%);
    border-radius: 16px 16px 0 0;
}

.methods-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--medium-gray);
}

.methods-header h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.methods-header p {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 300;
}

.contact-methods {
    display: block; /* Use block layout instead */
}

.contact-method {
    margin-bottom: 2rem;
}

.contact-method:last-child {
    margin-bottom: 0;
}
 

.contact-method {
    padding: 1.5rem;
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-method:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
}

.method-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.method-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.method-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 1rem;
}

.method-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.method-action:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.whatsapp-action {
    background: #25d366;
}

.whatsapp-action:hover {
    background: #20b858;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.linkedin-action {
    background: #0077b5;
}

.linkedin-action:hover {
    background: #005885;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

/* Business Hours */
.business-hours {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(245, 245, 244, 0.8) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.hours-title {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.hours-grid {
    display: grid;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hours-row:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.day {
    font-weight: 400;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.time {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 300;
}

.weekend {
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--light-gray);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-text {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 300;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-link {
    font-size: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-dark);
}

.footer-bottom {
    font-size: 0.75rem;
    color: var(--text-light);
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    font-weight: 300;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section {
        margin-bottom: 6rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    #about {
        padding-top: 4rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-visual {
        order: 1;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    #contact {
        padding: 4rem 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .company-info-card,
    .contact-methods-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .logo-image {
        width: 25px;
        height: 25px;
    }

    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-inner {
        padding: 1rem;
    }

    .hero-video {
        display: none;
    }

    .hero-image-fallback {
        display: block;
    }

    .section {
        padding: 0 1rem;
        margin-bottom: 4rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    #about {
        padding: 3rem 2rem;
        margin: 1rem;
    }

    #process {
        padding: 3rem 2rem;
        margin: 1rem;
    }

    #contact {
        padding: 3rem 1rem;
        margin: 1rem 0.5rem;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

    .company-info-card,
    .contact-methods-card {
        padding: 2rem;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .credentials-grid {
        gap: 0.75rem;
    }

    .credential-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .credential-value {
        font-size: 0.8rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

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

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    .about-content {
        gap: 2rem;
    }
    
    .styled-portrait {
        width: 280px;
        height: 350px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .video-overlay-card {
        height: 70vh;
    }

    .product-text-overlay {
        padding: 2rem;
    }

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

    .product-description {
        font-size: 1.1rem;
    }

    .product-link {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .client-item {
        margin: 0 2rem;
        font-size: 1rem;
    }

    .clients-section {
        padding: 6rem 1rem;
    }
    
    .clients-header h3 {
        font-size: 2rem;
    }
    
    .client-item {
        min-width: 280px;
        padding: 2rem 2.5rem;
        margin: 0 1rem;
    }
    
    .client-name {
        font-size: 0.9rem;
    }
    
    .clients-track {
        animation-duration: 60s;
    }
    
    .clients-marquee-reverse .clients-track {
        animation-duration: 65s;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 26px;
        height: 26px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .product-title {
        font-size: 1.8rem;
    }

    .product-description {
        font-size: 1rem;
    }

    .video-overlay-card {
        height: 60vh;
    }

    .product-text-overlay {
        padding: 1.5rem;
    }

    .company-logo-section {
        flex-direction: column;
        gap: 0.75rem;
    }

    .company-logo-section img {
        width: 40px;
        height: 40px;
    }

    .company-name {
        font-size: 1.3rem;
    }

    .method-action {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}