:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --primary-color: #4169e1; /* Royal Blue */
    --secondary-color: #f5f5f5;
    --accent-color: #00bcd4; /* Cyan/Neon */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(65, 105, 225, 0.15);
    --font-main: 'Inter', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main), var(--font-jp);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    width: 50px;
    height: 50px;
    background-color: rgba(65, 105, 225, 0.1);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.3s;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), transparent);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

nav a:hover::after {
    width: 100%;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    animation: zoomIn 20s infinite alternate;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 20%, var(--bg-color) 90%);
}

.hero-content {
    z-index: 1;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 2px;
}

.sub-tagline {
    font-size: 1rem;
    margin-bottom: 40px;
    color: rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: 0.3s;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--bg-color);
}

.btn-primary:hover::before {
    left: 0;
}

/* Sections General */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* About Section */
.mission-vision {
    max-width: 800px;
    margin: 0 auto 60px;
}

.mission-box, .vision-box {
    margin-bottom: 50px;
    padding: 0;
    background: transparent;
    border: none;
}

.mission-box h3, .vision-box h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-box h4, .vision-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.5;
    font-weight: 700;
}

.mission-box p, .vision-box p {
    color: rgba(0,0,0,0.7);
    line-height: 1.9;
    font-size: 1rem;
}

.company-info-section {
    max-width: 800px;
    margin: 0 auto;
}

.company-info {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
}

.company-info th, .company-info td {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.company-info th {
    width: 30%;
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(65,105,225,0.2);
    border-color: var(--primary-color);
    background: white;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: rgba(0,0,0,0.6);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-details li {
    color: rgba(0,0,0,0.7);
    font-size: 0.85rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.service-link:hover {
    background: var(--primary-color);
    color: white;
}

.service-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-desc {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: rgba(0,0,0,0.5);
    font-size: 0.9rem;
    background: var(--secondary-color);
}

/* Animations */
@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    header {
        padding: 20px;
    }

    .hamburger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-color);
        position: absolute;
        transition: 0.3s;
    }

    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 9px; }
    .hamburger span:nth-child(3) { bottom: 0; }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav a {
        font-size: 1.5rem;
    }
    
    .company-info th, .company-info td {
        display: block;
        width: 100%;
    }
    
    .company-info th {
        padding-bottom: 5px;
    }
    
    .company-info td {
        padding-top: 5px;
        padding-bottom: 20px;
    }
}
