/* ==========================================
   WebZZ — The Digital Tiger
   Styles
   ========================================== */

:root {
    --orange: #FF6B2B;
    --orange-light: #FF8F5E;
    --orange-dark: #E85A1B;
    --tiger-black: #1A1A2E;
    --tiger-dark: #16213E;
    --tech-blue: #0F3460;
    --tech-cyan: #00D2FF;
    --accent-purple: #7B2FF7;
    --accent-pink: #FF2E93;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ==========================================
   Typography
   ========================================== */

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--tiger-black);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.section-header.light .section-title,
.section-header.light .section-desc {
    color: #fff;
}
.section-header.light .section-desc {
    opacity: 0.85;
}

/* ==========================================
   Buttons
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 4px 15px rgba(255, 107, 43, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 43, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ==========================================
   Language Switcher
   ========================================== */

.lang-switcher {
    display: flex;
    gap: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 2px;
    margin-left: auto;
    margin-right: 16px;
}

.lang-btn {
    padding: 5px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.lang-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.lang-btn.active {
    color: #fff;
    background: var(--orange);
    box-shadow: 0 2px 8px rgba(255, 107, 43, 0.4);
}

/* ==========================================
   Navbar
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.logo-icon {
    font-size: 1.8rem;
}

.accent {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    background: var(--orange) !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--tiger-black) 0%, var(--tiger-dark) 40%, var(--tech-blue) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 43, 0.3);
    border-radius: 50%;
    animation: float-particle 6s ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 120px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange), var(--tech-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-subtitle strong {
    color: #fff;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-plus {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual & Image */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiger-container {
    position: relative;
    width: 400px;
    height: 420px;
}

.tiger-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.3), rgba(0, 210, 255, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
    animation: tiger-bob 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes tiger-bob {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-12px); }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 1.5rem;
    animation: float-around 5s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.float-2 { top: 5%; right: 10%; animation-delay: 1s; }
.float-3 { bottom: 30%; left: 0; animation-delay: 2s; }
.float-4 { top: 30%; right: 0; animation-delay: 3s; }
.float-5 { bottom: 15%; right: 15%; animation-delay: 4s; }

@keyframes float-around {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-3deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ==========================================
   About Section
   ========================================== */

.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.about-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 43, 0.2);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
    animation: icon-bounce 2s ease-in-out infinite;
}

.about-card:nth-child(2) .about-icon { animation-delay: 0.3s; }
.about-card:nth-child(3) .about-icon { animation-delay: 0.6s; }
.about-card:nth-child(4) .about-icon { animation-delay: 0.9s; }

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

.about-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--tiger-black);
}

.about-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================
   Gallery Section
   ========================================== */

.gallery {
    padding: 100px 0;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.gallery-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.card-visual {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-tiger-emoji {
    font-size: 4rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
}

.gallery-card:hover .card-tiger-emoji {
    transform: scale(1.15) rotate(-5deg);
}

.card-accessory-emoji {
    font-size: 2rem;
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 3;
    animation: float-around 3s ease-in-out infinite;
}

.card-bg-accent {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.gallery-card:hover .card-bg-accent {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.25;
}

/* Card style variants */
.defi-visual {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}
.defi-visual .card-bg-accent { background: #4caf50; }

.educator-visual {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}
.educator-visual .card-bg-accent { background: #2196f3; }

.dev-visual {
    background: linear-gradient(135deg, #ede7f6, #d1c4e9);
}
.dev-visual .card-bg-accent { background: #673ab7; }

.rwa-visual {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}
.rwa-visual .card-bg-accent { background: #ff9800; }

.compliance-visual {
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
}
.compliance-visual .card-bg-accent { background: #009688; }

.architect-visual {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
}
.architect-visual .card-bg-accent { background: #ffc107; }

.card-content {
    padding: 24px;
}

.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 8px;
}

.card-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--tiger-black);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   Industry Sections
   ========================================== */

.industry {
    padding: 100px 0;
}

.web3-section {
    background: var(--bg-light);
}

.rwa-section {
    background: var(--bg-white);
}

.industry-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.industry-layout.reverse {
    direction: rtl;
}

.industry-layout.reverse > * {
    direction: ltr;
}

/* Industry Orbital Graphic */
.industry-graphic {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.ig-circle {
    position: absolute;
    inset: 30px;
    border: 2px dashed var(--border);
    border-radius: 50%;
    animation: slow-spin 30s linear infinite;
}

@keyframes slow-spin {
    to { transform: rotate(360deg); }
}

.ig-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.ig-orbit-item {
    position: absolute;
    font-size: 1.8rem;
    animation: orbit 12s linear infinite;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

.ig-orbit-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.ig-orbit-2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: -3s; }
.ig-orbit-3 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: -6s; }
.ig-orbit-4 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: -9s; }

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(140px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

.web3-graphic .ig-circle {
    border-color: rgba(0, 210, 255, 0.3);
}

.rwa-graphic .ig-circle {
    border-color: rgba(255, 107, 43, 0.3);
}

.industry-content .section-tag {
    display: inline-block;
}

.industry-content .section-title {
    margin-bottom: 16px;
}

.industry-content > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.industry-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.list-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.industry-list li strong {
    display: block;
    font-size: 1rem;
    color: var(--tiger-black);
    margin-bottom: 4px;
}

.industry-list li p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   Contact Section
   ========================================== */

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--tiger-black), var(--tech-blue));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(4px);
}

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-card h3 {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tiger-black);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 43, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: #0d0d1a;
    padding: 60px 0 0;
    color: rgba(255,255,255,0.6);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .nav-logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.8rem;
}

.footer-ip {
    margin-top: 6px;
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ==========================================
   Scroll Animations
   ========================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }

    .tiger-container {
        width: 300px;
        height: 320px;
    }

    .industry-layout,
    .industry-layout.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .industry-visual {
        order: -1;
    }

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

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-card {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-right: 12px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
        flex-wrap: wrap;
    }

    .contact-info {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 60px;
    }

    .hero-content {
        padding: 20px 16px 100px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-form {
        padding: 24px;
    }

    .industry-graphic {
        width: 250px;
        height: 250px;
    }
}
