@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Modern Tech Color Palette */
    --primary-color: #0A0E27;
    --secondary-color: #1A1F3A;
    --accent-color: #00D9FF;
    --accent-secondary: #7B2FF7;
    --accent-gradient: linear-gradient(135deg, #00D9FF 0%, #7B2FF7 100%);
    --accent-hover: #00B8D4;
    --bg-dark: #0A0E27;
    --bg-light: #F5F7FA;
    --bg-white: #FFFFFF;
    --bg-card: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-light: #FFFFFF;
    --text-dark: #0A0E27;
    --text-muted: #8B92A7;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    
    /* Typography */
    --font-base: 'Noto Sans JP', sans-serif;
    --font-en: 'Space Grotesk', 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.8;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

body.dark-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

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

.section {
    padding: 100px 0;
}

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

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

/* Typography Helpers */
.en-font {
    font-family: var(--font-en);
}

.section-title {
    font-family: var(--font-en);
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: -0.01em;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 25px auto 0;
    border-radius: 2px;
}

.section-title.light {
    color: var(--text-light);
}

/* Header */
#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: var(--transition);
}

.logo a:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-family: var(--font-en);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: 50px 30px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 20px 0;
        color: var(--text-light);
        font-size: 1.2rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* Language Switch */
.lang-switch {
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.lang-switch button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    padding: 0 2px;
}

.lang-switch button:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(123, 47, 247, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10%, 10%) rotate(180deg); }
}

/* Floating particles effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 217, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(123, 47, 247, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 217, 255, 0.2), transparent);
    background-size: 200% 200%;
    animation: particleFloat 20s ease infinite;
    z-index: 0;
}

@keyframes particleFloat {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 80% 10%; }
    50% { background-position: 100% 100%, 0% 0%, 80% 80%, 20% 90%; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-intro {
    font-family: var(--font-en);
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    margin-bottom: 25px;
    display: block;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero h1 {
    font-family: var(--font-en);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero h1 br {
    display: block;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-gradient);
    color: #fff;
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.8s both;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}

/* News / Information Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--bg-white);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-family: var(--font-en);
}

.news-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.news-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 2px 8px;
    border-radius: 20px;
}

.news-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
}

/* PICK UP / Services Section */
.pickup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--bg-dark);
    padding: 2px;
}

.pickup-item {
    position: relative;
    height: 400px;
    background: var(--bg-dark);
    overflow: hidden;
    cursor: pointer;
}

.pickup-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.7);
}

.pickup-item:hover img {
    transform: scale(1.15);
    filter: brightness(0.5);
}

.pickup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.85) 0%, rgba(123, 47, 247, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 30px;
}

.pickup-item:hover .pickup-overlay {
    opacity: 1;
}

.pickup-title {
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.pickup-item:hover .pickup-title {
    transform: translateY(0);
}

.pickup-desc {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 300;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.2s;
}

.pickup-item:hover .pickup-desc {
    transform: translateY(0);
}

/* Page Header */
.page-header {
    background: var(--bg-dark);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-light);
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

/* About Page */
.vision-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 45px;
    border-left: 4px solid transparent;
    border-image: var(--accent-gradient) 1;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.vision-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.15);
}

.vision-section h4 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 40px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-table th,
.info-table td {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

.info-table th {
    width: 30%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(123, 47, 247, 0.05) 100%);
    font-weight: 600;
    color: var(--text-dark);
}

.info-table tr {
    transition: var(--transition-fast);
}

.info-table tr:hover {
    background: rgba(0, 217, 255, 0.02);
}

/* Services Page - Feature Rows */
.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-row:nth-child(1) { animation-delay: 0.1s; }
.feature-row:nth-child(2) { animation-delay: 0.2s; }
.feature-row:nth-child(3) { animation-delay: 0.3s; }
.feature-row:nth-child(4) { animation-delay: 0.4s; }
.feature-row:nth-child(5) { animation-delay: 0.5s; }

/* Alternating Logic: Image Right, Text Left for even rows */
.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0.1;
    border-radius: 16px;
    z-index: -1;
    transition: var(--transition);
}

.feature-row:hover .feature-image::before {
    top: -30px;
    left: -30px;
    opacity: 0.15;
}

.feature-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.feature-row:hover .feature-image img {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 217, 255, 0.25);
}

.feature-text {
    flex: 1;
    min-width: 350px;
}

.feature-number {
    font-family: var(--font-en);
    font-size: 5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    font-weight: 700;
    line-height: 1;
    margin-bottom: -25px;
    display: block;
}

.feature-title {
    font-family: var(--font-en);
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.feature-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 30px;
}

.feature-list {
    margin-top: 25px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.feature-list li:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent-gradient);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

@media (max-width: 900px) {
    .feature-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .feature-row,
    .feature-row:nth-child(even) {
        flex-direction: column;
        text-align: left;
        margin-bottom: 60px;
    }

    .feature-image,
    .feature-text {
        width: 100%;
    }

    .feature-number {
        font-size: 3rem;
    }
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-info {
    min-width: 0;
}

.address-item {
    margin-bottom: 35px;
    padding: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.address-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
}

.address-item h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-form-container {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 25px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    background: var(--bg-light);
    font-family: inherit;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.qr-section {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.qr-item {
    text-align: center;
    font-size: 0.9rem;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.qr-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
}

.qr-item img {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 10px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 100px 0 40px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-info h2 {
    font-family: var(--font-en);
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 45px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

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

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

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-family: var(--font-en);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
}

/* Responsive */
@media (max-width: 992px) {
    :root {
        --container-width: 100%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .pickup-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-row {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .hero {
        height: auto;
        min-height: 600px;
        padding: 150px 0 100px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .pickup-item {
        height: 350px;
    }

    .section {
        padding: 70px 0;
    }

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

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .feature-row,
    .feature-row:nth-child(even) {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .feature-image,
    .feature-text {
        min-width: 100%;
    }

    .feature-number {
        font-size: 3.5rem;
    }

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

    .contact-form-container {
        padding: 35px 25px;
    }

    .qr-section {
        flex-direction: column;
        align-items: center;
    }
}


/* Additional Tech Elements */
.tech-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Glowing card effect */
.glow-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition);
}

.glow-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--accent-gradient);
    border-radius: 16px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.glow-card:hover::before {
    opacity: 0.5;
}

.glow-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.scroll-indicator::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(15px);
        opacity: 0.3;
    }
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}

/* Pulse animation for accent elements */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 217, 255, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Gradient text */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats counter section */
.stats-section {
    background: var(--bg-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item {
    color: var(--text-light);
}

.stat-number {
    font-family: var(--font-en);
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* News cards enhancement */
.news-card {
    background: var(--bg-white);
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
}


/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

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

/* Print styles */
@media print {
    .hero::before,
    .hero::after,
    .tech-grid-bg,
    .scroll-indicator {
        display: none !important;
    }
    
    header,
    footer {
        background: white !important;
        color: black !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background: var(--accent-color);
    color: white;
}

::-moz-selection {
    background: var(--accent-color);
    color: white;
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

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

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

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

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(0, 217, 255, 0.3);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Utility classes */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-glow {
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.border-gradient {
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--accent-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Enhanced hover effects */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Divider */
.divider {
    height: 1px;
    background: var(--accent-gradient);
    margin: 60px 0;
    opacity: 0.3;
}

/* Container variations */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Grid system */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}
