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

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Policy Pages */
.policy-page {
    max-width: 800px;
    margin: 100px auto 50px;
    padding: 40px 20px;
}

.page-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.policy-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.policy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-section ul,
.policy-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.policy-date {
    text-align: center;
    margin: 3rem 0 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.policy-date p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.policy-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.policy-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.policy-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: clamp(1.75rem, 4.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

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

.hero-visual {
    flex: 1;
    position: relative;
    height: 100%;
    min-height: 500px;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 5%;
    left: 10%;
    opacity: 0.2;
}

.element-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
    opacity: 0.25;
}

.element-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 40%;
    right: 10%;
    animation-delay: 4s;
    opacity: 0.3;
}

.element-4 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    bottom: 35%;
    left: 5%;
    animation-delay: 1s;
    opacity: 0.25;
}

.element-5 {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    top: 60%;
    left: 35%;
    animation-delay: 5s;
    opacity: 0.3;
}

/* Particles */
.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(102, 126, 234, 0.6);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; animation-delay: 6s; }
.particle:nth-child(5) { left: 70%; animation-delay: 8s; }
.particle:nth-child(6) { left: 85%; animation-delay: 10s; }
.particle:nth-child(7) { left: 20%; animation-delay: 12s; }
.particle:nth-child(8) { left: 75%; animation-delay: 14s; }

/* Business icons floating */
.business-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.icon-float {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.1;
    color: var(--primary-color);
    animation: icon-float 20s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.icon-2 {
    top: 50%;
    right: 25%;
    animation-delay: 7s;
}

.icon-3 {
    bottom: 25%;
    left: 60%;
    animation-delay: 14s;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.3;
    }
}

/* Network lines */
.network-container {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.network-svg {
    width: 100%;
    height: 100%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(50px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@keyframes grid-move {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
    }
}

/* 3D Rotating Rings */
.ring-container {
    position: absolute;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.ring {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
}

.ring-1 {
    border-color: rgba(102, 126, 234, 0.3);
    animation: rotate3d-1 20s linear infinite;
}

.ring-2 {
    width: 300px;
    height: 300px;
    border-color: rgba(240, 147, 251, 0.3);
    animation: rotate3d-2 15s linear infinite;
}

.ring-3 {
    width: 500px;
    height: 500px;
    border-color: rgba(79, 172, 254, 0.3);
    animation: rotate3d-3 25s linear infinite;
}

@keyframes rotate3d-1 {
    0% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg); }
}

@keyframes rotate3d-2 {
    0% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(-360deg) rotateY(360deg) rotateZ(360deg); }
}

@keyframes rotate3d-3 {
    0% { transform: translate(-50%, -50%) rotateX(0deg) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(360deg) rotateZ(-360deg); }
}

/* Aurora Effect */
.aurora-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
}

.aurora {
    position: absolute;
    width: 200%;
    height: 60%;
    filter: blur(60px);
}

.aurora-1 {
    background: linear-gradient(45deg, #00ff88, #00ffff, #ff00ff);
    top: 0;
    left: -50%;
    animation: aurora-wave 15s ease-in-out infinite;
}

.aurora-2 {
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
    top: 20%;
    left: -30%;
    animation: aurora-wave 20s ease-in-out infinite reverse;
}

.aurora-3 {
    background: linear-gradient(45deg, #06ffa5, #ffbe0b, #fb5607);
    top: 40%;
    left: -40%;
    animation: aurora-wave 25s ease-in-out infinite;
}

@keyframes aurora-wave {
    0%, 100% { transform: translateX(-10%) skewX(-10deg); }
    50% { transform: translateX(10%) skewX(10deg); }
}

/* Starfield */
.starfield {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.star:nth-child(2) { top: 20%; left: 25%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 15%; left: 70%; animation-delay: 1s; }
.star:nth-child(4) { top: 30%; left: 40%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 25%; left: 85%; animation-delay: 2s; }
.star:nth-child(6) { top: 40%; left: 20%; animation-delay: 0.3s; }
.star:nth-child(7) { top: 35%; left: 60%; animation-delay: 0.8s; }
.star:nth-child(8) { top: 50%; left: 30%; animation-delay: 1.3s; }
.star:nth-child(9) { top: 45%; left: 75%; animation-delay: 1.8s; }
.star:nth-child(10) { top: 60%; left: 45%; animation-delay: 2.3s; }
.star:nth-child(11) { top: 55%; left: 90%; animation-delay: 0.2s; }
.star:nth-child(12) { top: 70%; left: 15%; animation-delay: 0.7s; }
.star:nth-child(13) { top: 65%; left: 55%; animation-delay: 1.2s; }
.star:nth-child(14) { top: 80%; left: 35%; animation-delay: 1.7s; }
.star:nth-child(15) { top: 75%; left: 80%; animation-delay: 2.2s; }
.star:nth-child(16) { top: 85%; left: 25%; animation-delay: 0.4s; }
.star:nth-child(17) { top: 90%; left: 65%; animation-delay: 0.9s; }
.star:nth-child(18) { top: 5%; left: 50%; animation-delay: 1.4s; }
.star:nth-child(19) { top: 95%; left: 10%; animation-delay: 1.9s; }
.star:nth-child(20) { top: 20%; left: 95%; animation-delay: 2.4s; }

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

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: shoot 3s linear infinite;
}

.shooting-star::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 1px;
    background: linear-gradient(to left, transparent, white);
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.shooting-star:nth-child(1) { top: 20%; animation-delay: 0s; }
.shooting-star:nth-child(2) { top: 40%; animation-delay: 1s; }
.shooting-star:nth-child(3) { top: 60%; animation-delay: 2s; }

@keyframes shoot {
    0% {
        opacity: 0;
        transform: translateX(300px) translateY(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-1500px) translateY(300px);
    }
}

/* Neon Lines */
.neon-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.neon-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    opacity: 0.8;
}

.neon-1 {
    width: 300px;
    top: 20%;
    left: -300px;
    animation: neon-move 8s linear infinite;
}

.neon-2 {
    width: 200px;
    top: 50%;
    left: -200px;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
    box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
    animation: neon-move 6s linear infinite;
}

.neon-3 {
    width: 250px;
    top: 80%;
    left: -250px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
    box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    animation: neon-move 7s linear infinite;
}

@keyframes neon-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 300px)); }
}

/* Holographic Prism */
.prism-container {
    position: absolute;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.prism {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 30%;
    right: 20%;
    transform-style: preserve-3d;
    animation: prism-rotate 10s linear infinite;
}

.prism::before,
.prism::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(255, 0, 0, 0.1),
        rgba(255, 127, 0, 0.1),
        rgba(255, 255, 0, 0.1),
        rgba(0, 255, 0, 0.1),
        rgba(0, 0, 255, 0.1),
        rgba(75, 0, 130, 0.1),
        rgba(148, 0, 211, 0.1));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.prism::after {
    transform: rotateY(90deg);
}

@keyframes prism-rotate {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

/* Wave SVG */
.wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
}

.wave-path {
    animation: wave-morph 10s ease-in-out infinite;
}

@keyframes wave-morph {
    0%, 100% { d: path("M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"); }
    50% { d: path("M0,300 Q300,400 600,300 T1200,300 L1200,600 L0,600 Z"); }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: ripple-expand 1s ease-out;
    pointer-events: none;
}

@keyframes ripple-expand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.company-info {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.info-item h3 {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.company-vision {
    margin-top: 3rem;
}

.company-vision h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-vision p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gradient-1);
    border-radius: 15px;
}

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

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

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

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-dark);
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-logo h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #94a3b8;
    font-style: italic;
}

.footer-links h4,
.footer-company h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-company ul {
    list-style: none;
}

.footer-links li,
.footer-company li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-company a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-company a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

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

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

    .hero-visual {
        display: none;
    }

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

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

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

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }
}

.hidden-fields-container
{
   display: none;
}
