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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Shippori Mincho', serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #ffffff;
}

/* Shippori Mincho for all text including headings */
h1, h2, h3, h4, h5, h6,
.service-number,
.service-number-large,
.strength-number {
    font-family: 'Shippori Mincho', serif;
}

/* Color Variables - Zeluk Dawn Theme */
:root {
    --dawn-dark: #0a1628;
    --dawn-navy: #1a2f4f;
    --dawn-purple: #3d2f5f;
    --dawn-orange: #ff6b35;
    --dawn-pink: #ff8c69;
    --dawn-yellow: #ffd93d;
    --dawn-sky: #6bcff6;
    --dawn-light: #e8f4f8;
    --gray-50: #fafbfc;
    --gray-100: #f3f4f6;
    --gray-700: #374151;
    --gray-900: #0f172a;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.1em;
}

#navbar.scrolled .logo {
    color: var(--dawn-navy);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

#navbar.scrolled .nav-links a {
    color: var(--gray-700);
}

.nav-links a:hover {
    color: var(--dawn-orange);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

#navbar.scrolled .hamburger span {
    background: var(--dawn-navy);
}

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

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

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

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

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 18, 36, 0.7) 0%, rgba(13, 27, 47, 0.6) 50%, rgba(6, 16, 35, 0.7) 100%),
                radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15), transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(61, 47, 95, 0.15), transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--dawn-orange) 0%, var(--dawn-pink) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 140, 105, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Section Styles */
.section {
    padding: 6rem 1.5rem;
}

.section-gray {
    background: var(--gray-50);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
    color: var(--dawn-navy);
    margin-bottom: 1rem;
}

.title-underline {
    width: 4rem;
    height: 3px;
    background: linear-gradient(90deg, var(--dawn-orange), var(--dawn-pink));
    margin: 0 0 2.5rem 0;
    border-radius: 2px;
}

/* Mission Section */
.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dawn-navy);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.mission-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.9;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dawn-orange), var(--dawn-pink));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.12);
    background: white;
}

.service-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dawn-orange);
    margin-bottom: 1rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.service-card:hover .service-number {
    color: var(--dawn-pink);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4f0;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--dawn-orange), var(--dawn-pink));
    border-color: transparent;
}

.service-icon svg {
    stroke: var(--dawn-orange);
    transition: stroke 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: white;
}

.service-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dawn-navy);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-card > p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.6;
}

.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--dawn-orange);
    font-weight: bold;
}

.service-view-more {
    color: var(--dawn-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-view-more:hover {
    color: var(--dawn-pink);
    transform: translateX(4px);
}

/* Strengths Grid */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.strength-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--dawn-orange), var(--dawn-pink));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.strength-card:hover::before {
    transform: scaleY(1);
}

.strength-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.strength-card:hover .strength-number {
    color: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

.strength-content {
    position: relative;
    z-index: 1;
}


.strength-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dawn-navy);
    margin-bottom: 1rem;
}

.strength-content p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* News Section */
.news-timeline {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.news-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateX(8px);
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    flex-shrink: 0;
    text-align: center;
    min-width: 80px;
}

.news-year {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.news-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dawn-orange);
}

.news-content {
    flex: 1;
}

.news-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.news-category-info {
    background: #e3f2fd;
    color: #1976d2;
}

.news-category-release {
    background: #fce4ec;
    color: #c2185b;
}

.news-category-company {
    background: #fff3e0;
    color: #f57c00;
}

.news-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dawn-navy);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.news-content p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* FAQ Section */
.faq-list {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dawn-navy);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--dawn-orange);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dawn-navy) 0%, var(--dawn-purple) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1), transparent 70%);
    z-index: 0;
}

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

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.cta-button-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--dawn-orange), var(--dawn-pink));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-button-large:hover::before {
    left: 100%;
}

.cta-button-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 140, 105, 0.4);
}

/* Footer */
.footer {
    background: var(--dawn-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.footer-info p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.footer-info a {
    color: var(--dawn-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--dawn-pink);
}

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

.footer-column h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--dawn-orange);
    padding-left: 0.5rem;
}

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

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dawn-navy) 0%, var(--dawn-purple) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1), transparent 70%);
    z-index: 0;
}

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

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 0.2em;
    font-weight: 400;
}

/* Service Detail */
.service-detail {
    margin-bottom: 4rem;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.service-number-large {
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.05);
    line-height: 1;
    margin-bottom: -3rem;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dawn-orange), var(--dawn-pink));
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.service-icon-large svg {
    stroke: white;
}

.service-image-large {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-image-large img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.service-detail-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dawn-navy);
    margin-bottom: 1rem;
}

.service-lead {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dawn-navy);
    margin-bottom: 2rem;
    text-align: center;
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.service-items-grid .service-item-card {
    counter-increment: service-counter;
}

.service-items-grid .service-item-card h4::before {
    content: '0' counter(service-counter);
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.service-items-grid .service-item-card:hover h4::before {
    color: rgba(255, 107, 53, 0.3);
    transform: scale(1.1);
}

.service-detail-content {
    counter-reset: service-counter;
}

.service-item-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--dawn-orange), var(--dawn-pink));
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.service-item-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.2);
}

.service-item-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.service-item-card:hover::after {
    opacity: 1;
}

.service-item-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dawn-navy);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-item-card:hover h4 {
    color: var(--dawn-orange);
}

.service-item-card p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

/* Company Page Styles */
.company-info-section {
    background: var(--gray-50);
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.company-info-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.company-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--dawn-orange), var(--dawn-pink));
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-info-card:hover::before {
    opacity: 1;
}

.company-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
}

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

.info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dawn-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.info-content {
    font-size: 1.125rem;
    color: var(--dawn-navy);
    font-weight: 500;
    line-height: 1.6;
}

.info-content a {
    color: var(--dawn-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--dawn-pink);
    text-decoration: underline;
}

/* Access Section */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

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

.access-address {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--dawn-orange);
}

.access-address h3 {
    font-size: 1.5rem;
    color: var(--dawn-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.access-address p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.access-transport {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.transport-item h4 {
    font-size: 1.125rem;
    color: var(--dawn-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.transport-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-item li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    line-height: 1.8;
    border-bottom: 1px solid var(--gray-100);
}

.transport-item li:last-child {
    border-bottom: none;
}

.transport-item li strong {
    color: var(--dawn-navy);
    font-weight: 600;
}

.access-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Mission Vision Card */
.mission-vision-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--dawn-orange), var(--dawn-pink));
    border-radius: 16px 0 0 16px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.mission-vision-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.mission-vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
}

.mv-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--dawn-orange), var(--dawn-pink));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.mission-vision-card h3 {
    font-size: 1.625rem;
    color: var(--dawn-navy);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.mission-vision-card .mission-vision-description p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1rem;
}

/* Value Card Modern */
.value-card-modern {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--dawn-orange), var(--dawn-pink));
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.value-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.2);
}

.value-card-modern:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.value-number-modern {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
    transition: all 0.4s ease;
}

.value-card-modern:hover .value-number-modern {
    color: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

.value-content {
    position: relative;
    z-index: 1;
}

.value-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dawn-navy);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.value-card-modern:hover .value-content h3 {
    color: var(--dawn-orange);
}

.value-content p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label.required::after {
    content: '*';
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-100);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--dawn-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.submit-button {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--dawn-orange), var(--dawn-pink));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

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

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Contact Page */
.contact-form-section {
    background: white;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 2rem auto 3rem;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.formrun-embed {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

.contact-method-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--dawn-orange), var(--dawn-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-method-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dawn-navy);
    margin-bottom: 1rem;
}

.contact-method-card p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-method-card a {
    color: var(--dawn-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method-card a:hover {
    color: var(--dawn-pink);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.75rem;
}

/* Privacy Page */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    line-height: 1.8;
}

.privacy-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dawn-navy);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-100);
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--dawn-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content p {
    margin-bottom: 1.25rem;
    color: var(--gray-700);
}

.privacy-content ul,
.privacy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-vision-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dawn-navy);
    margin-bottom: 1rem;
}

.mission-vision-item > p {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--dawn-orange);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.mission-vision-description p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--dawn-orange);
    transition: all 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
    margin-bottom: -1.5rem;
    font-family: 'Shippori Mincho', serif;
}

.value-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dawn-navy);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-700);
    line-height: 1.8;
}

/* Responsive Design */
/* Mobile - Small (< 480px) */
@media (max-width: 479px) {
    .hero-content {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

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

    .mission-statement {
        font-size: 1.375rem;
    }

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

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

    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .company-info-card.full-width {
        grid-column: 1;
    }

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

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

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

/* Mobile - Medium (480px - 768px) */
@media (min-width: 480px) and (max-width: 768px) {
    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.75;
    }

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

    .mission-statement {
        font-size: 1.5rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .company-info-grid {
        gap: 1.5rem;
    }

    .access-content {
        gap: 2rem;
    }
}

/* Shared Mobile Styles (< 768px) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 0;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--gray-700);
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 1.1rem;
    }

    .nav-links a:hover {
        color: var(--dawn-orange);
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

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

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

    .strength-number {
        font-size: 3rem;
        top: 1rem;
        right: 1rem;
    }

    .strength-card {
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 0;
    }

    .formrun-embed {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-method-card {
        padding: 2rem;
    }

    .contact-intro {
        font-size: 0.9375rem;
    }

    .news-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .news-date {
        text-align: left;
    }

    .news-day {
        font-size: 1.25rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.9375rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.875rem;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

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

    .service-number-large {
        font-size: 5rem;
        margin-bottom: -2rem;
    }

    .service-detail-header h2 {
        font-size: 1.875rem;
    }

    .service-lead {
        font-size: 1.0625rem;
    }

    .service-items-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.5rem;
    }

    .service-items-grid .service-item-card h4::before {
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
    }

    .service-item-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .privacy-content {
        padding: 2rem 1.5rem;
    }

    .mission-vision-item > p {
        font-size: 1.25rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .nav-container {
        padding: 0 2rem;
    }

    .hero-content {
        max-width: 800px;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-content p {
        font-size: 1.125rem;
        line-height: 1.8;
    }

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

    .mission-statement {
        font-size: 1.625rem;
    }

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

    .service-items-grid {
        gap: 2rem;
        max-width: 900px;
    }

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

    .strength-card {
        padding: 2rem;
    }

    .mission-vision-grid {
        gap: 2.5rem;
        grid-template-columns: 1fr;
    }

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

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

    .service-number-large {
        font-size: 6.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Large Tablet / Small Desktop (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1875rem;
    }

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

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
