/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Custom Properties */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --accent-color: #1a9988;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-dark: #0a0a0a;
    --bg-light: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #004e89 0%, #1a9988 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-container {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(26, 153, 136, 0.1));
    border-radius: var(--border-radius);
    animation: float 20s infinite ease-in-out;
}

.container-1 {
    width: 200px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.container-2 {
    width: 160px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.container-3 {
    width: 180px;
    height: 110px;
    bottom: 20%;
    left: 60%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    75% { transform: translateY(-30px) rotate(0.5deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 2;
}

.glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    filter: blur(8px);
    opacity: 0.7;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: var(--shadow-light);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.lang-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    transform: scale(1.05);
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.lang-btn .flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-btn .lang-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    max-width: 100vw;
    width: 100%;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 153, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 78, 137, 0.05) 0%, transparent 50%);
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: 2px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
}

/* Container 3D Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 4rem;
}

.container-showcase {
    position: relative;
    width: 400px;
    height: 300px;
    perspective: 1000px;
}

.container-3d {
    position: relative;
    width: 300px;
    height: 180px;
    transform-style: preserve-3d;
    animation: rotate3d 20s infinite linear;
}

.container-side {
    position: absolute;
    background: var(--gradient-secondary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.container-side.front {
    width: 300px;
    height: 180px;
    transform: translateZ(90px);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 8px;
}

.container-side.top {
    width: 300px;
    height: 180px;
    transform: rotateX(90deg) translateZ(90px);
    background: linear-gradient(135deg, #004e89 0%, #1a9988 100%);
}

.container-side.right {
    width: 180px;
    height: 180px;
    transform: rotateY(90deg) translateZ(300px);
    background: linear-gradient(135deg, #1a9988 0%, #004e89 100%);
}

.container-door {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 60px;
    height: 160px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.container-details {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-line {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

@keyframes rotate3d {
    0% { transform: rotateY(0deg) rotateX(5deg); }
    100% { transform: rotateY(360deg) rotateX(5deg); }
}

.tech-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tech-line {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.6;
    animation: techPulse 3s infinite ease-in-out;
}

.tech-line:nth-child(1) {
    width: 100px;
    height: 2px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tech-line:nth-child(2) {
    width: 80px;
    height: 2px;
    bottom: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.tech-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: techPoint 2s infinite ease-in-out;
}

.tech-point:nth-child(3) {
    top: 25%;
    left: 20%;
    animation-delay: 0.5s;
}

.tech-point:nth-child(4) {
    bottom: 35%;
    right: 25%;
    animation-delay: 2s;
}

@keyframes techPulse {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes techPoint {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 1px;
    animation: scrollIndicator 2s infinite ease-in-out;
}

@keyframes scrollIndicator {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    opacity: 0;
    filter: blur(20px);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover .card-glow {
    opacity: 0.3;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-hover {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.service-card:hover .service-hover {
    opacity: 1;
    transform: scale(1);
}

.service-hover i {
    color: white;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: var(--bg-light);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid rgba(255, 107, 53, 0.2);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.gallery-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.container-visual {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.office-design {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.home-design {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.retail-design {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.workspace-design {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.design-elements {
    position: absolute;
    inset: 0;
    padding: 1rem;
}

.window {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.window:nth-child(1) {
    width: 40px;
    height: 60px;
    top: 20px;
    left: 20px;
}

.window:nth-child(2) {
    width: 40px;
    height: 60px;
    top: 20px;
    left: 70px;
}

.window:nth-child(3) {
    width: 40px;
    height: 60px;
    top: 20px;
    left: 120px;
}

.window.large {
    width: 80px !important;
    height: 80px !important;
}

.door {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 80px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
}

.door.residential {
    background: rgba(255, 255, 255, 0.5);
    width: 35px;
}

.detail-strip {
    position: absolute;
    bottom: 10px;
    left: 20px;
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.balcony {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.storefront {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 100px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.sign {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
}

.awning {
    position: absolute;
    top: 140px;
    left: 20px;
    right: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px 10px 0 0;
}

.entrance {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 80px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 6px;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-tags span {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Process Section */
.process {
    padding: 8rem 0;
    background: white;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    z-index: 2;
}

.step-content {
    flex: 1;
    max-width: 300px;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin: 0 4rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--bg-dark);
    color: white;
}

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

.contact-info .section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.contact-info .section-header h2,
.contact-info .section-header p {
    color: white;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-info p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1rem;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

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

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

.form-group label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: var(--bg-dark);
    padding: 0 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-dark);
    color: white;
}

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

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo .logo {
    margin-bottom: 1.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.social-link i {
    color: white;
    font-size: 1.2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 769px) {
    .language-switcher {
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: var(--shadow-light) !important;
        border: 1px solid rgba(255, 107, 53, 0.2) !important;
        padding: 0.5rem !important;
        animation: none !important;
        z-index: auto !important;
    }
    
    .language-switcher .lang-btn {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem !important;
    }
    
    .language-switcher .flag {
        font-size: 1rem !important;
    }
    
    .language-switcher .lang-text {
        font-size: 0.8rem !important;
        font-weight: 700 !important;
    }
}

@media (max-width: 768px) {
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100vw !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-heavy);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Move language switcher to top of mobile menu */
    .nav-menu .language-switcher {
        position: static !important;
        order: -1;
        margin-bottom: 1.5rem;
        align-self: center;
        background: rgba(255, 107, 53, 0.1);
        border: 2px solid rgba(255, 107, 53, 0.3);
        padding: 0.75rem;
    }
    
    .nav-menu .language-switcher .lang-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .nav-menu .language-switcher .flag {
        font-size: 1.1rem;
    }
    
    .nav-menu .language-switcher .lang-text {
        font-size: 0.8rem;
        font-weight: 700;
    }
    
    .hero {
        padding: 6rem 0.5rem 3rem !important;
        min-height: 90vh;
        max-width: 100vw !important;
        width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .hero-content {
        padding: 0 0.5rem !important;
        max-width: 100vw !important;
        width: 100% !important;
        gap: 2rem;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.5;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
    }
    
    .container {
        padding: 0 0.5rem !important;
        max-width: 100vw !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        max-width: 100% !important;
    }
    
    .stat-item {
        min-width: 80px;
        text-align: center;
        flex: 0 0 auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100% !important;
    }
    
    .btn {
        width: 100%;
        max-width: 250px !important;
        justify-content: center;
        text-align: center;
        box-sizing: border-box !important;
    }
    
    /* Fix 3D container overflow */
    .hero-visual {
        max-width: 100% !important;
        overflow: hidden !important;
        width: 100% !important;
    }
    
    .container-showcase {
        max-width: 280px !important;
        width: 100% !important;
        height: 180px !important;
        overflow: hidden !important;
    }
    
    .container-3d {
        max-width: 250px !important;
        height: 150px !important;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .step-content {
        margin: 2rem 0 0 0 !important;
        max-width: none;
    }
    
    .step-icon {
        margin: 1rem 0;
    }
    
    .timeline-line {
        display: none;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100vw !important;
    }
    
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100vw !important;
        position: relative !important;
    }
    
    .hero {
        padding: 7rem 0.25rem 4rem !important;
        min-height: 85vh;
        max-width: 100vw !important;
        width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .hero-content {
        padding: 0 0.25rem !important;
        gap: 2.5rem !important;
        max-width: 100vw !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-badge {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.6rem !important;
        margin-bottom: 1.5rem !important;
        max-width: fit-content !important;
    }
    
    .hero-stats {
        gap: 0.5rem !important;
        margin-bottom: 2rem !important;
        max-width: 100% !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 2rem !important;
    }
    
    .btn {
        width: 100%;
        max-width: 240px !important;
        justify-content: center;
        padding: 0.8rem 1.2rem !important;
        font-size: 0.85rem !important;
        box-sizing: border-box !important;
    }
    
    .container {
        padding: 0 0.25rem !important;
        max-width: 100vw !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 0.5rem !important;
    }
    
    /* Optimized 3D container for mobile */
    .hero-visual {
        max-width: 100% !important;
        overflow: visible !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        padding: 0 1rem !important;
    }
    
    .container-showcase {
        width: 320px !important;
        max-width: 90vw !important;
        height: 200px !important;
        overflow: visible !important;
        margin: 0 auto !important;
    }
    
    .container-3d {
        width: 280px !important;
        max-width: 85vw !important;
        height: 168px !important;
        transform-origin: center !important;
        margin: 0 auto !important;
    }
    
    /* Disable all scrolling in sections */
    section {
        overflow: hidden !important;
    }
}

/* Force disable all section scrolling globally and add header offset */
section {
    overflow: hidden !important;
    padding-top: 100px !important;
}

/* Hero section doesn't need extra padding as it's full screen */
section.hero {
    padding-top: 10rem !important;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Focus States */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
.btn:focus {
    outline-color: rgba(255, 107, 53, 0.5);
}