/* ===========================================
   ZENITH INSIGHT - Premium Corporate Design
   =========================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Navigation - 磨砂玻璃効果 (Premium Frosted Glass Effect) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 45px;
    width: auto;
}

.company-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 300;
}

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

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transition: width 0.3s ease;
}

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

/* Premium Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: -20px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 15px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    padding: 0;
}

.dropdown-menu .dropdown-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 10px;
}

.dropdown-menu .dropdown-item a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.dropdown-menu .dropdown-item i {
    font-size: 1.1rem;
    color: #60a5fa;
    width: 18px;
}

.dropdown-menu .dropdown-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(37, 99, 235, 0.1) 100%
    );
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    z-index: 1;
    text-align: left;
}

.brand-philosophy {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.philosophy-text {
    font-size: 1.125rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 0.5rem;
}

.philosophy-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 800px;
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-highlights .highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-highlights .highlight-item i {
    color: #60a5fa;
    font-size: 1.125rem;
}

.hero-highlights .highlight-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    opacity: 0.8;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-animation 2s infinite;
}

.scroll-text {
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes scroll-animation {
    0%, 20% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(16px);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1f2937;
    margin-bottom: 1.5rem;
    position: relative;
}

.services .section-title {
    color: white;
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Strategic Advantages Section */
.strategic-advantages {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.strategic-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('publish/images/office_image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(4px) grayscale(100%) brightness(0.25) contrast(1.2);
    transform: scale(1.1);
    z-index: 0;
}

.strategic-advantages::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(51, 65, 85, 0.90) 50%, rgba(71, 85, 105, 0.85) 100%),
        radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.strategic-advantages .container {
    position: relative;
    z-index: 2;
}

.strategic-advantages .section-title {
    color: white;
}

.strategic-advantages .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .strategic-advantages::before {
        background-attachment: scroll;
        transform: scale(1.05);
    }
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.advantage-card h3 {
    font-size: 1.375rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.advantage-details {
    list-style: none;
}

.advantage-details li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 20px;
}

.advantage-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: bold;
}

/* Contact Form Section */
.contact-form {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.required {
    color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

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

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.form-submit-btn {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 20px auto 0;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.form-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        padding: 25px 15px;
        gap: 15px;
    }
    
    .contact-form {
        padding: 60px 0;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        max-width: 90%;
    }
    
    .contact-title-container {
        gap: 1rem;
    }
    
    .contact-decoration-line {
        width: 40px;
        height: 1.5px;
    }
    
    .contact-header .section-title {
        font-size: 1.75rem;
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.services .container {
    position: relative;
    z-index: 1;
}

/* New Banner-style Services Grid */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-banner {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-banner:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 
        0 25px 50px rgba(96, 165, 250, 0.15),
        0 0 0 1px rgba(96, 165, 250, 0.2);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(16, 32, 64, 0.8) 50%, 
        rgba(96, 165, 250, 0.3) 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.service-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

/* Service icon removed for cleaner design */

.service-banner .service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-summary {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-tags .tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-banner:hover .service-tags .tag {
    background: rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.4);
    color: #60a5fa;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-cta:hover {
    background: rgba(96, 165, 250, 0.3);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(96, 165, 250, 0.2);
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(3px);
}

/* Legacy services grid for compatibility */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(96, 165, 250, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-badge {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.service-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-highlights {
    margin-bottom: 2rem;
}

.service-highlights h4 {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-highlights h4::before {
    content: '◆';
    color: #3b82f6;
}

.highlight-grid {
    display: grid;
    gap: 1rem;
}

.highlight-grid .highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.highlight-grid .highlight-item i {
    color: #3b82f6;
    font-size: 1.125rem;
    margin-top: 2px;
}

.highlight-grid .highlight-item span {
    font-weight: 600;
    color: #374151;
    display: block;
    margin-bottom: 4px;
}

.highlight-grid .highlight-item small {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
}

.service-tech, .service-network, .service-approach {
    margin-bottom: 2rem;
}

.service-tech h4, .service-network h4, .service-approach h4 {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-tech h4::before {
    content: '⚡';
}

.service-network h4::before {
    content: '🌐';
}

.service-approach h4::before {
    content: '🎯';
}

.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(96, 165, 250, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.tech-item i {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-top: 2px;
}

.tech-item strong {
    color: #374151;
    display: block;
    margin-bottom: 4px;
}

.tech-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.service-network ul, .service-approach ul {
    list-style: none;
}

.service-network ul li, .service-approach ul li {
    padding: 8px 0;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-network ul li i, .service-approach ul li i {
    color: #3b82f6;
    margin-top: 2px;
}

.service-platforms {
    margin-bottom: 2rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.platform-group h5 {
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.platform-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 2px 4px 2px 0;
}

.service-team {
    margin-bottom: 2rem;
}

.service-team h4 {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-team h4::before {
    content: '👥';
}

.service-team p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: linear-gradient(135deg, #e0f2fe, #b3e5fc);
    color: #0369a1;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(3, 105, 161, 0.2);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 12px 0;
}

.service-link:hover {
    color: #2563eb;
    transform: translateX(5px);
}

/* Team Section */
.team {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.team .section-title {
    color: white;
}

.team .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-strengths {
    margin: 4rem 0;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.strength-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.strength-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.strength-item i {
    font-size: 2.5rem;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.strength-item h4 {
    color: white;
    margin-bottom: 0.75rem;
}

.strength-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.team-philosophy {
    margin-top: 4rem;
    text-align: center;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-content h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.philosophy-content .philosophy-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

.philosophy-content strong {
    color: #60a5fa;
}

/* About Section */
.about {
    background-color: #f8fafc;
}

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

.company-name {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 2rem;
}

.company-mission, .company-message, .sub-catchcopies {
    margin-bottom: 2.5rem;
}

.company-mission h4, .company-message h4, .sub-catchcopies h4, .about-features h4 {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-mission h4::before {
    content: '🎯';
}

.company-message h4::before {
    content: '💡';
}

.sub-catchcopies h4::before {
    content: '🚀';
}

.about-features h4::before {
    content: '⭐';
}

.brand-philosophy {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3b82f6;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.brand-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 400;
}

/* Enhanced About Text Styles */
.company-name-section {
    margin-bottom: 2rem;
}

.company-name {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    position: relative;
}

.name-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    margin: 0 auto;
}

.philosophy-container {
    position: relative;
    padding: 1.5rem 0;
}

.brand-philosophy {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
    font-style: italic;
    margin: 0 0 1rem 0;
    position: relative;
}

.philosophy-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    margin: 0 auto 1rem auto;
    opacity: 0.6;
}

.about-text .brand-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
    margin: 0;
    font-weight: 500;
}

.company-message {
    margin-top: 2.5rem;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.message-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d1d5db, transparent);
}

.message-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding: 0 0.5rem;
}

.message-content {
    position: relative;
}

.message-content::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.message-content p {
    padding-left: 1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

.company-message p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.company-message strong {
    color: #3b82f6;
}

.sub-catchcopies ul {
    list-style: none;
}

.sub-catchcopies ul li {
    padding: 8px 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.sub-catchcopies ul li i {
    color: #3b82f6;
}

.about-features .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-features .feature-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-features .feature-item i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.about-features .feature-item h5 {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.about-features .feature-item p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Company Info Styles */
.company-info {
    margin-top: 3rem;
}

.company-info h4 {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-info h4::before {
    content: '🏢';
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.company-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.company-info .info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.company-info .info-item i {
    font-size: 1.25rem;
    color: #3b82f6;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-content p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.info-content small {
    color: #9ca3af;
    font-size: 0.75rem;
}

/* Company Table Styles */
.company-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.company-table th,
.company-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.company-table th {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-weight: 600;
    color: #374151;
    width: 30%;
    font-size: 0.875rem;
}

.company-table td {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.company-table tr:hover {
    background-color: #f9fafb;
}

/* Value Proposition Frame Styles */
.value-frame {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.value-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="70" r="0.8" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.value-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-header i {
    font-size: 1.5rem;
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.value-frame h4 {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
}

.value-frame .value-text {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.value-frame .value-text strong {
    color: #fbbf24;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Value Proposition Container Styles */
.value-proposition-container {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.value-proposition-container .value-proposition {
    margin: 0;
}

.value-proposition-container .value-frame {
    max-width: none;
    width: 100%;
}

/* Contact Section */
.contact-form {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form .container {
    position: relative;
    z-index: 1;
}

/* Contact Header Styles */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.contact-decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, transparent);
    border-radius: 1px;
}

.contact-header .section-title {
    margin: 0;
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}

.contact-header .section-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    font-size: 1.05rem;
    padding: 18px 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.info-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0.25rem;
}

.info-item h4 {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.recruitment-info {
    padding: 2rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 16px;
    color: white;
}

.recruitment-info h4 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recruitment-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.recruitment-positions {
    list-style: none;
    margin: 1rem 0;
}

.recruitment-positions li {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.recruitment-positions li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
}

.recruitment-info small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.06) 0%, transparent 30%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.02) 49%, rgba(255, 255, 255, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.02) 49%, rgba(255, 255, 255, 0.02) 51%, transparent 52%);
    background-size: 60px 60px, 60px 60px;
    animation: footerPattern 20s linear infinite;
    pointer-events: none;
}

@keyframes footerPattern {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(60px, 60px) rotate(360deg); }
}

.footer .container {
    position: relative;
    z-index: 1;
}

/* Footer Decorative Elements */
.footer-decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    animation: floatShape 15s ease-in-out infinite;
}

.footer-shape:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.footer-shape:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
    background: rgba(59, 130, 246, 0.05);
}

.footer-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 60%;
    animation-delay: 10s;
    background: rgba(139, 92, 246, 0.04);
}

.footer-shape:nth-child(4) {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 7s;
    background: rgba(16, 185, 129, 0.06);
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 36px;
    width: auto;
}

.footer-logo h3 {
    color: white;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-philosophy .brand-philosophy {
    font-size: 1.125rem;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.footer-philosophy .brand-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.advantages-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .about-features .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .company-tagline {
        display: none;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Responsive Design for New Services */
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-banner {
        height: 350px;
    }
    
    .service-content {
        padding: 30px 25px;
    }
    
    .service-banner .service-title {
        font-size: 1.5rem;
    }
    
    .service-summary {
        font-size: 0.9rem;
    }

    .team-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .about-features .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .company-table th,
    .company-table td {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .company-table th {
        width: 35%;
    }
    
    .value-frame {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .value-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .value-frame h4 {
        font-size: 1.1rem;
    }
    
    .value-frame .value-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Enhanced About Text Mobile Styles */
    .company-name {
        font-size: 1.3rem;
    }
    
    .name-divider {
        width: 50px;
        height: 2px;
    }
    
    .philosophy-container {
        padding: 1rem 0;
    }
    
    .brand-philosophy {
        font-size: 1rem;
    }
    
    .philosophy-divider {
        width: 30px;
    }
    
    .message-content::before {
        left: -0.5rem;
        width: 2px;
    }
    
    .message-content p {
        padding-left: 0.5rem;
        font-size: 0.9rem;
    }
    
    .message-label {
        font-size: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

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

    /* Mobile Services Styles */
    .service-banner {
        height: 320px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    /* Service icon removed for cleaner mobile design */
    
    .service-banner .service-title {
        font-size: 1.3rem;
    }

    section {
        padding: 80px 0;
    }

    .nav-container {
        padding: 0 15px;
        height: 70px;
    }

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

    .service-card,
    .contact-form,
    .advantage-card {
        padding: 2rem 1.5rem;
    }

    .highlight-grid .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Contact Simple Styles */
.contact-simple {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-simple .container {
    position: relative;
    z-index: 1;
}

.contact-email-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-email-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-email-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.contact-email-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.contact-email-icon i {
    font-size: 2rem;
    color: white;
}

.contact-email-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-email-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-email-address {
    margin-bottom: 3rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

.email-link i {
    font-size: 1rem;
}

.contact-services {
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
}

.contact-services h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.service-item i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.service-item span {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.95rem;
}

.info-item i {
    color: #3b82f6;
    font-size: 1rem;
}

/* Responsive Design for Contact Simple */
@media (max-width: 768px) {
    .contact-simple {
        padding: 80px 0;
    }
    
    .contact-email-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-email-title {
        font-size: 1.5rem;
    }
    
    .contact-email-description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .email-link {
        font-size: 1.1rem;
        padding: 0.875rem 1.75rem;
    }
}

/* About Section Centered Layout */
.about-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.company-identity {
    text-align: center;
    width: 100%;
}

.company-info-centered {
    width: 100%;
    max-width: 800px;
}

.company-info-centered h4 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2rem;
    position: relative;
}

.company-info-centered h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.company-info-centered .company-table {
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

/* Responsive Design for About Centered */
@media (max-width: 768px) {
    .about-content-centered {
        gap: 3rem;
        padding: 1.5rem 1rem;
    }
    
    .company-info-centered {
        max-width: 100%;
    }
    
    .company-info-centered h4 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
}