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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #212121;
    background-color: #ffffff;
    opacity: 1; /* Ensure body is always visible */
}

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

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

ul, ol {
    list-style: none;
}

/* ========================================
   Colors (CSS Variables)
======================================== */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #66BB6A;
    --accent-color: #388E3C;
    --text-main: #212121;
    --text-sub: #757575;
    --bg-light: #F1F8E9;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* ========================================
   Layout Components
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-sub);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 48px;
    line-height: 1.4;
    box-sizing: border-box;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

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

.btn-secondary:hover {
    background-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-contact {
    background-color: var(--accent-color);
    color: var(--text-main);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-contact:hover {
    background-color: #2E7D32;
    transform: translateY(-1px);
}

/* ========================================
   Header
======================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
}

.logo img {
    width: 180px;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

nav a {
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    min-height: 100vh;
    background-image: url('../画像ファイル/トップページ画像.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(79, 195, 247, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 80px auto 0;
}

.hero-title {
    font-size: 2.5rem;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'Noto Serif JP', serif;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    letter-spacing: 0.05em;
}


.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Business Video
======================================== */
.business-video {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.video-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.business-video-player {
    width: 100%;
    height: auto;
    display: block;
    min-height: 400px;
    background-color: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    padding: 20px 40px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(79, 195, 247, 0.4);
}

.video-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.6);
}

.play-icon {
    font-size: 1.5rem;
    margin-left: 5px;
}

.play-text {
    font-size: 1rem;
}

/* ========================================
   Instagram Section
======================================== */
.instagram-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 15px;
}

.instagram-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.instagram-section p {
    margin-bottom: 2rem;
    color: var(--text-sub);
}

.instagram-embed {
    margin: 2rem auto;
    max-width: 400px;
}

.instagram-embed iframe {
    width: 100%;
    max-width: 400px;
    height: 480px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.instagram-link {
    margin-top: 1.5rem;
}

/* ========================================
   Services Overview
======================================== */
.services-overview {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
    min-height: 2.6rem;
}

.service-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0 0 0;
    min-height: 1.5rem;
}

.service-note {
    font-size: 0.875rem;
    color: var(--text-sub);
    margin: 0 0 1rem 0;
    font-style: italic;
}

/* ========================================
   Strengths
======================================== */
.strengths {
    padding: 5rem 0;
}

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

.strength-item {
    text-align: center;
    padding: 2rem 1rem;
}

.strength-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.strength-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ========================================
   Achievements Numbers
======================================== */
.achievements-numbers {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--white);
}

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

.number-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 200px;
}

.number-value {
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    margin-bottom: 0.5rem;
}

.number-unit {
    font-size: 1.25rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.number-description {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   CEO Message
======================================== */
.ceo-message {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.ceo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ceo-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.ceo-quote p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.ceo-name {
    margin-top: 2rem;
    text-align: right;
}

.ceo-name .title {
    display: block;
    font-size: 0.9rem;
    color: var(--text-sub);
}

.ceo-name .name {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.ceo-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   News
======================================== */
.news {
    padding: 5rem 0;
}

.news-list {
    margin-top: 3rem;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    gap: 2rem;
}

.news-date {
    font-size: 0.9rem;
    color: var(--text-sub);
    min-width: 100px;
}

.news-category {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    min-width: 80px;
    text-align: center;
}

.news-title {
    flex: 1;
    font-weight: 500;
}

.news-more {
    text-align: center;
    margin-top: 2rem;
}

/* ========================================
   CTA
======================================== */
.cta {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Footer
======================================== */
.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

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

.footer-logo img {
    width: 180px;
    margin-bottom: 1rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

/* ========================================
   Page Headers
======================================== */
.page-header {
    padding: 8rem 0 3rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

/* ========================================
   Service Detail Pages
======================================== */
.service-nav {
    background-color: var(--bg-light);
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.service-tab {
    padding: 1rem 2rem;
    background-color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow);
}

.service-tab:hover,
.service-tab.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-detail {
    padding: 5rem 0;
}

.service-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-tagline {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.service-features,
.service-process,
.service-pricing {
    margin-bottom: 5rem;
}

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

.feature-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Process Steps */
.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Pricing */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.plan-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    transition: transform 0.3s ease;
}

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

.plan-card.recommended {
    border: 3px solid var(--accent-color);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--text-main);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-amount {
    font-size: 3rem;
}

.plan-feature {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.plan-includes {
    margin: 2rem 0;
}

.plan-includes li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.plan-includes li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

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

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
}

.price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 1.2rem;
    color: var(--text-sub);
}

.price-per {
    font-size: 1rem;
    color: var(--text-sub);
}

.pricing-includes h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.pricing-includes ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-includes ul li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ========================================
   Achievements Page
======================================== */
.achievements-header {
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.achievements-stats {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.stat-item {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    min-width: 200px;
    text-align: center;
}

.stat-unit {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-sub);
}

/* Methods Results */
.methods-results {
    padding: 5rem 0;
}

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

.method-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

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

.method-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.method-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.method-stats {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
}

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

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-sub);
}

/* Case Studies */
.case-studies {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.case-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.case-header {
    margin-bottom: 2rem;
}

.case-industry {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.case-challenge,
.case-solution,
.case-result {
    margin-bottom: 1.5rem;
}

.case-challenge h4,
.case-solution h4,
.case-result h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.result-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

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

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.result-desc {
    font-size: 0.9rem;
    color: var(--text-sub);
}

/* Customer Voices */
.customer-voices {
    padding: 5rem 0;
}

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

.voice-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
}

.voice-card:before {
    content: """;
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.voice-quote p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.voice-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
}

.author-company {
    color: var(--text-sub);
    font-size: 0.9rem;
}

.author-service {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Industry Results */
.industry-results {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.industry-chart {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.industry-item {
    display: grid;
    grid-template-columns: 150px 1fr 60px;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.industry-name {
    font-weight: 600;
}

.industry-bar {
    height: 30px;
    background-color: #eee;
    border-radius: 15px;
    overflow: hidden;
}

.industry-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    transition: width 2s ease;
    width: 0;
}

.industry-percent {
    font-weight: 600;
    color: var(--primary-color);
}

/* ========================================
   Company Page
======================================== */
.company-header {
    background-image: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.company-philosophy {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.philosophy-main h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* CEO Profile */
.ceo-profile {
    padding: 5rem 0;
}

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

.ceo-details h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.ceo-message p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    padding-left: 2rem;
}

.ceo-credentials {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.ceo-credentials h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ceo-credentials ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.ceo-credentials ul li:last-child {
    border-bottom: none;
}

.ceo-credentials ul li:before {
    content: "▶";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Company Info */
.company-info {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

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

.company-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    width: 150px;
}

.business-list {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.business-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.business-list li:last-child {
    border-bottom: none;
}

.business-list h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* CEO Features */
.ceo-features {
    padding: 5rem 0;
}

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

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Company History */
.company-history {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 100px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    gap: 2rem;
}

.timeline-year {
    width: 100px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Company Access */
.company-access {
    padding: 5rem 0;
}

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

.access-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.access-list li {
    margin-bottom: 0.5rem;
}

.access-list li:before {
    content: "🚇";
    margin-right: 0.5rem;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-placeholder {
    background-color: var(--bg-light);
    height: 300px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-sub);
}

/* ========================================
   Contact Page
======================================== */
.contact-header {
    background-image: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.contact-methods {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.method-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.method-card.primary {
    border: 3px solid var(--primary-color);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.method-info {
    margin: 1.5rem 0;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.phone-number a {
    color: var(--primary-color);
    text-decoration: none;
}

.phone-hours,
.response-time,
.email-hours {
    color: var(--text-sub);
    font-size: 0.9rem;
}

.form-time {
    font-weight: 600;
    color: var(--secondary-color);
}

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

.email-address a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    padding: 5rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.required-note {
    color: #d32f2f;
    font-size: 0.9rem;
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.required {
    color: #d32f2f;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkmark,
.radiomark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.radiomark {
    border-radius: 50%;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
}

.radio-label input[type="radio"]:checked + .radiomark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked + .radiomark:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: var(--white);
    border-radius: 50%;
}

.privacy {
    margin: 2rem 0;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.submit-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-sub);
}

/* Contact FAQ */
.contact-faq {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

/* FAQ Styles */
.faq {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-main);
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.6;
}

/* Privacy Policy */
.privacy-policy {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.policy-content h3,
.policy-content h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

.policy-content ul li:before {
    content: "●";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Guarantee */
.guarantee {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.guarantee-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.guarantee-conditions {
    margin-top: 2rem;
}

.guarantee-conditions h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guarantee-conditions ul li {
    margin-bottom: 0.5rem;
}

.guarantee-conditions ul li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ========================================
   Utility Classes
======================================== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

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

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

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

@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.count-animation {
    animation: countUp 2s ease forwards;
}

/* ========================================
   Loading States
======================================== */
.loading {
    position: relative;
    pointer-events: none;
}

.loading:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}