/* ============================================
   COMPLETE MOBILE RESPONSIVE STYLES
   For 20 Microns Website
   ============================================ */

/* ===== NAVIGATION - MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-logo .logo-image {
        height: 40px;
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.85rem 0;
    }
    
    .nav-container {
        padding: 0 1.25rem;
        gap: 1rem;
    }
    
    .nav-logo .logo-image {
        height: 36px;
        max-width: 140px;
    }
    
    .nav-menu {
        position: fixed;
        top: 57px;
        left: 0;
        width: 100%;
        height: calc(100vh - 75px);
        background: white;
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(127, 166, 155, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }
    
    .btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 1.5rem;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Mega Menu Mobile */
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
    }
    
    .mega-menu-container {
        padding: 1rem 0;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mega-menu-section {
        border: none;
        padding: 0;
    }
    
    .mega-menu-featured {
        border: none;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .nav-logo .logo-image {
        height: 32px;
        max-width: 120px;
    }
    
    .nav-menu {
        padding: 1.5rem 1rem;
    }
    
    .nav-link {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
}

/* ===== HERO SECTION - MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        min-height: 650px;
        height: auto;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 5vw, 3.5rem);
        margin-bottom: 24px;
    }
    
    .hero-subtitle p {
        font-size: 1.05rem;
    }
    
    .hero-stats {
        gap: 12px;
        margin-bottom: 50px;
    }
    
    .hero-stats .stat-card {
        padding: 14px 20px;
    }
    
    .hero-stats .stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .hero-stats .stat-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-stats .stat-value {
        font-size: 1.4rem;
    }
    
    .hero-stats .stat-title {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-container {
        padding: 0 1.25rem;
    }
    
    .hero-content-center {
        padding-top: 60px;
        padding-bottom: 60px;
        gap: 0;
    }
    
    .hero-badge {
        padding: 10px 18px;
        gap: 10px;
        margin-bottom: 18px;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .badge-dot {
        width: 6px;
        height: 6px;
    }
    
    .hero-title {
        font-size: clamp(1.85rem, 7vw, 2.75rem);
        margin-bottom: 20px;
    }
    
    .title-word {
        margin: 0 0.08em;
    }
    
    .hero-subtitle {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .hero-subtitle p {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .subtitle-line {
        width: 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
        font-size: 0.875rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 300px;
        margin-bottom: 40px;
    }
    
    .hero-stats .stat-card {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 18px;
    }
    
    .hero-stats .stat-divider {
        display: none;
    }
    
    .hero-stats .stat-icon {
        width: 34px;
        height: 34px;
    }
    
    .hero-stats .stat-value {
        font-size: 1.3rem;
    }
    
    .hero-stats .stat-title {
        font-size: 0.625rem;
    }
    
    .hero-scroll {
        bottom: 20px;
    }
    
    .scroll-label {
        font-size: 0.6rem;
    }
    
    .hero-corner {
        width: 35px;
        height: 35px;
    }
    
    .hero-corner.top-left,
    .hero-corner.top-right {
        top: 15px;
    }
    
    .hero-corner.bottom-left,
    .hero-corner.bottom-right {
        bottom: 15px;
    }
    
    .hero-corner.top-left,
    .hero-corner.bottom-left {
        left: 10px;
    }
    
    .hero-corner.top-right,
    .hero-corner.bottom-right {
        right: 10px;
    }
    
    .floating-hex,
    .floating-circle {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: clamp(1.65rem, 8vw, 2.5rem);
    }
    
    .hero-subtitle p {
        font-size: 0.875rem;
    }
    
    .cta-btn {
        padding: 12px 20px;
    }
    
    .hero-stats .stat-card {
        padding: 10px 16px;
    }
    
    .hero-corner {
        width: 30px;
        height: 30px;
    }
}

/* ===== SECTION HEADERS - MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .section-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: clamp(1.85rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: clamp(1.65rem, 7vw, 2.25rem);
    }
    
    .section-description {
        font-size: 0.95rem;
    }
}

/* ===== ABOUT SECTION - MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-section {
        padding: 6rem 0;
    }
    
    .about-bento-grid {
        gap: 18px;
    }
    
    .bento-hero {
        min-height: 380px;
    }
    
    .bento-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 5rem 0;
    }
    
    .about-main-title {
        font-size: 1.75rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-bento-grid {
        gap: 16px;
    }
    
    .bento-hero {
        min-height: 320px;
    }
    
    .bento-hero-content {
        padding: 24px;
    }
    
    .bento-hero-content h3 {
        font-size: 1.5rem;
    }
    
    .bento-hero-content p {
        font-size: 0.95rem;
    }
    
    .bento-card {
        padding: 20px;
    }
    
    .bento-icon {
        width: 46px;
        height: 46px;
    }
    
    .bento-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .bento-feature-content h4 {
        font-size: 1.05rem;
    }
    
    .bento-feature-content p {
        font-size: 0.9rem;
    }
    
    .bento-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .bento-stat-value {
        font-size: 1.75rem;
    }
    
    .bento-stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-header-badge .badge-text {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .about-main-title {
        font-size: 1.5rem;
    }
    
    .about-subtitle {
        font-size: 0.95rem;
    }
    
    .bento-hero {
        min-height: 280px;
    }
    
    .bento-hero-content {
        padding: 20px;
    }
    
    .bento-hero-content h3 {
        font-size: 1.3rem;
    }
    
    .bento-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .bento-card {
        padding: 18px;
    }
}

/* ===== PRODUCTS SECTION - MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-section {
        padding: 6rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 5rem 0;
    }
    
    .products-catalog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card-content {
        padding: 20px;
    }
    
    .product-card-title {
        font-size: 1.15rem;
    }
    
    .product-card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .product-card {
        border-radius: 20px;
    }
    
    .product-card-content {
        padding: 18px;
    }
}

/* ===== INDUSTRIES SECTION - MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .industries-header-premium {
        padding: 0 1.5rem;
    }
    
    .industries-grid-premium {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .industries-header-premium {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .industries-title-premium {
        font-size: 1.75rem;
    }
    
    .industries-subtitle {
        font-size: 0.95rem;
    }
    
    .industries-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .industry-card {
        padding: 20px 16px;
    }
    
    .industry-card-inner {
        gap: 12px;
    }
    
    .industry-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .industry-icon {
        width: 28px;
        height: 28px;
    }
    
    .industry-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .industries-title-premium {
        font-size: 1.5rem;
    }
    
    .industries-grid-premium {
        grid-template-columns: repeat(1, 1fr);
        gap: 14px;
    }
    
    .industry-card {
        padding: 18px 14px;
    }
    
    .industry-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .industry-icon {
        width: 26px;
        height: 26px;
    }
    
    .industry-name {
        font-size: 0.85rem;
    }
}

/* ===== VALUES SECTION - MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .values-section {
        padding: 6rem 0;
    }
    
    .values-sticky-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 5rem 0;
    }
    
    .values-sticky-wrapper {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .values-content {
        position: relative !important;
        top: auto !important;
        width: 100%;
        height: auto;
        padding-right: 0;
    }
    
    .values-images {
        position: relative !important;
        top: auto !important;
        width: 100%;
        min-height: 400px;
    }
    
    .value-item {
        padding: 2rem 0;
    }
    
    .value-number {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .value-title {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }
    
    .value-description {
        font-size: 1rem;
    }
    
    .value-image {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .values-section {
        padding: 4rem 0;
    }
    
    .value-number {
        font-size: 1.5rem;
    }
    
    .value-title {
        font-size: 1.45rem;
    }
    
    .value-description {
        font-size: 0.95rem;
    }
    
    .values-images {
        min-height: 350px;
    }
    
    .value-image {
        min-height: 300px;
    }
}

/* ===== INNOVATION SECTION - MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .innovation-section-premium {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .innovation-section-premium {
        padding: 60px 0;
    }
    
    .innovation-bento-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .innovation-hero-card {
        padding: 32px 24px;
        gap: 24px;
    }
    
    .innovation-hero-title {
        font-size: 1.85rem;
    }
    
    .innovation-hero-description {
        font-size: 1rem;
    }
    
    .innovation-features-list {
        gap: 18px;
    }
    
    .innovation-feature-item {
        padding: 16px;
        gap: 16px;
    }
    
    .innovation-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .innovation-feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .innovation-feature-title {
        font-size: 1.05rem;
    }
    
    .innovation-feature-description {
        font-size: 0.85rem;
    }
    
    .innovation-image-card {
        min-height: 280px;
    }
    
    .innovation-stat-card {
        min-height: 180px;
    }
    
    .innovation-stat-number,
    .innovation-stat-plus {
        font-size: 2.5rem;
    }
    
    .innovation-stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .innovation-badge-premium {
        font-size: 0.7rem;
        padding: 8px 16px;
    }
    
    .innovation-hero-title {
        font-size: 1.65rem;
    }
    
    .innovation-hero-description {
        font-size: 0.95rem;
    }
    
    .innovation-feature-item {
        padding: 14px;
    }
    
    .innovation-feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .innovation-stat-number,
    .innovation-stat-plus {
        font-size: 2.25rem;
    }
    
    .innovation-stat-label {
        font-size: 0.9rem;
    }
}

/* ===== NETWORK SECTION - MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .network-map {
        border-radius: 18px;
    }
    
    .network-legend {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .legend-item {
        font-size: 0.85rem;
    }
    
    .network-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 24px;
    }
    
    .stat-card {
        padding: 1.5rem 1.25rem;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
    }
    
    .stat-icon i {
        font-size: 1.25rem;
    }
    
    .stat-value {
        font-size: 1.65rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .network-stats {
        gap: 0.875rem;
        margin-top: 20px;
    }
    
    .stat-card {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 44px;
        height: 44px;
    }
    
    .stat-icon i {
        font-size: 1.15rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

/* ===== EVENTS SECTION - MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .events-header-premium {
        margin-bottom: 48px;
    }
    
    .events-title-premium {
        font-size: 1.85rem;
    }
    
    .events-subtitle-premium {
        font-size: 1rem;
    }
    
    .events-grid-premium {
        gap: 20px;
    }
    
    .event-date-badge {
        top: 20px;
        left: 20px;
        padding: 10px 16px;
        min-width: 76px;
    }
    
    .event-date-day {
        font-size: 1.5rem;
    }
    
    .event-date-month {
        font-size: 0.7rem;
    }
    
    .event-card-body {
        padding: 85px 24px 20px;
    }
    
    .event-card-title {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    
    .event-detail-item {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .event-card-link {
        margin: 20px 24px 28px;
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .events-grid-premium {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .events-title-premium {
        font-size: 1.65rem;
    }
    
    .event-date-badge {
        top: 16px;
        left: 16px;
        padding: 8px 14px;
        min-width: 70px;
    }
    
    .event-date-day {
        font-size: 1.35rem;
    }
    
    .event-card-body {
        padding: 75px 20px 18px;
    }
    
    .event-card-title {
        font-size: 1.15rem;
    }
    
    .event-card-link {
        margin: 18px 20px 24px;
    }
}

/* ===== CONTACT SECTION - MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        position: relative;
        top: auto;
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .contact-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.75rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-icon {
        width: 52px;
        height: 52px;
    }
    
    .contact-icon i {
        font-size: 1.35rem;
    }
    
    .contact-content h4 {
        font-size: 1.15rem;
    }
    
    .contact-content p,
    .contact-content a {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 0;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem 1.125rem;
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-item {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.95rem 1rem;
    }
}

/* ===== FOOTER SECTION - MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-wave-divider {
        height: 120px;
    }
    
    .footer-wave-divider svg {
        height: 120px;
    }
    
    .footer-section-premium {
        padding: 5rem 0 3rem;
    }
    
    .footer-grid-premium {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-wave-divider {
        height: 100px;
        margin-bottom: -1px;
    }
    
    .footer-wave-divider svg {
        height: 100px;
    }
    
    .footer-section-premium {
        padding: 4rem 0 2.5rem;
    }
    
    .footer-grid-premium {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-brand .footer-logo {
        max-height: 55px;
    }
    
    .footer-brand-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-social-link {
        width: 42px;
        height: 42px;
    }
    
    .footer-social-link i {
        font-size: 1.1rem;
    }
    
    .footer-column {
        text-align: center;
        align-items: center;
    }
    
    .footer-column-title {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links li a {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .footer-newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-newsletter-input {
        width: 100%;
        padding: 13px 18px;
        font-size: 0.9rem;
    }
    
    .footer-newsletter-button {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-legal a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-wave-divider {
        height: 80px;
    }
    
    .footer-wave-divider svg {
        height: 80px;
    }
    
    .footer-section-premium {
        padding: 3.5rem 0 2rem;
    }
    
    .footer-grid-premium {
        gap: 2rem;
    }
    
    .footer-brand .footer-logo {
        max-height: 50px;
    }
    
    .footer-brand-description {
        font-size: 0.875rem;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-link i {
        font-size: 1rem;
    }
    
    .footer-column-title {
        font-size: 1.05rem;
    }
    
    .footer-links li a {
        font-size: 0.85rem;
    }
    
    .footer-newsletter-input,
    .footer-newsletter-button {
        padding: 12px 16px;
    }
}

/* ===== SCROLL TO TOP - MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .scroll-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .scroll-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }
}

/* ===== GENERAL CONTAINER - MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===== BUTTONS - MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .btn {
        padding: 0.95rem 1.85rem;
        font-size: 0.95rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.95rem 1.85rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.875rem 1.65rem;
        font-size: 0.9rem;
    }
}

/* ===== MOBILE OPTIMIZATION - PERFORMANCE ===== */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .hero-video {
        transform: translate(-50%, -50%) scale(1.05);
    }
    
    /* Simplify background effects on mobile */
    .ambient-glow,
    .product-float-shape,
    .product-gradient-orb {
        display: none;
    }
    
    /* Hide complex decorative elements on mobile */
    .visual-particles,
    .about-particles,
    .floating-hex,
    .floating-circle,
    .hero-visuals {
        display: none;
    }
}

/* ===== TOUCH-FRIENDLY ELEMENTS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for mobile devices */
    .nav-link,
    .btn,
    .footer-social-link,
    .social-links a,
    .event-card-link,
    .product-link {
        min-height: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .nav-link:hover,
    .btn:hover,
    .product-card:hover,
    .event-card-premium:hover {
        transform: none;
    }
}

/* ===== LANDSCAPE ORIENTATION - MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero-content-center {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-stats .stat-card {
        width: auto;
        min-width: 140px;
    }
}

/* ===== SAFE AREAS FOR NOTCH DEVICES ===== */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
    
    .nav-menu {
        padding-left: max(2rem, env(safe-area-inset-left));
        padding-right: max(2rem, env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(1.25rem, env(safe-area-inset-left));
        padding-right: max(1.25rem, env(safe-area-inset-right));
    }
}

/* ===== MOBILE OVERFLOW FIX ===== */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    * {
        max-width: 100%;
    }
    
    img,
    video {
        max-width: 100%;
        height: auto;
    }
}
