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

:root {
    --primary-red: #FF3B3B;
    --dark-red: #E60000;
    --light-red: #FF6666;
    --black: #1a1a1a;
    --dark-gray: #333333;
    --gray: #666666;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Shippori Mincho', serif;
    color: var(--black);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--white);
}

body.menu-open {
    overflow: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

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

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

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 8px rgba(255, 59, 59, 0.3));
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: 0.05em;
    line-height: 1;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:not(.cta-button):hover {
    color: var(--primary-red);
}

.nav-link:not(.cta-button):hover::after {
    width: 100%;
}

.nav-link.cta-button {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.nav-link.cta-button:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 59, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '🍎';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 8rem;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.hero::after {
    content: '🍎';
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 12rem;
    opacity: 0.05;
    transform: rotate(20deg);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.hero-apple {
    font-size: 4.5rem;
    margin-bottom: 30px;
    animation: float 4s ease-in-out infinite;
}

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

.hero-title {
    margin-bottom: 40px;
}

.hero-line {
    display: block;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.hero-main {
    display: block;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1.1;
    margin-top: 20px;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--gray);
    margin-bottom: 50px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 2px;
}

.button-primary {
    background: var(--primary-red);
    color: var(--white);
}

.button-primary:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.3);
}

.button-secondary {
    background: var(--white);
    color: var(--black);
    border: 1px solid #ddd;
}

.button-secondary:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-3px);
}

/* Section Common */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 25px;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Concept Section */
.concept {
    background: var(--white);
}

.concept-story {
    max-width: 900px;
    margin: 0 auto;
}

.concept-story-content {
    background: var(--light-gray);
    padding: 80px 60px;
    border-radius: 4px;
    position: relative;
}

.concept-story-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 40px;
}

.concept-story-text {
    font-size: 1.1rem;
    line-height: 2.2;
    color: var(--dark-gray);
}

.highlight {
    color: var(--primary-red);
    font-weight: 700;
}

.highlight-red {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 1.3rem;
    display: block;
    margin-top: 20px;
}

/* Service Section */
.service {
    background: var(--light-gray);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-red);
}

.service-card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.service-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.service-card-text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

.service-cta {
    text-align: center;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: var(--primary-red);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat-number {
    font-size: clamp(3.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Company Section */
.company {
    background: var(--white);
}

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

.company-main {
    text-align: center;
    margin-bottom: 60px;
}

.company-name {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 30px;
}

.company-apple {
    font-size: 5rem;
    animation: float 4s ease-in-out infinite;
}

.company-info {
    background: var(--light-gray);
    padding: 60px;
    border-radius: 4px;
}

.company-info-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.company-info-label {
    font-weight: 700;
    color: var(--gray);
}

.company-info-value {
    color: var(--black);
    font-weight: 500;
}

.company-info-value a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.company-info-value a:hover {
    text-decoration: underline;
}

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

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

.contact-method {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-method-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.contact-method-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-method-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Booking Section */
.booking-section {
    background: var(--white);
}

.booking-note {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 0.95rem;
    color: var(--primary-red);
    text-align: center;
    background: #fff5f5;
    padding: 20px;
    border-radius: 4px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 100px 0 50px;
}

.footer-content {
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo-brand {
    font-size: 1.6rem;
    font-weight: 800;
}

.footer-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--primary-red);
    font-weight: 700;
}

.footer-service-links {
    margin-bottom: 60px;
}

.footer-service-title {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.footer-service-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-service-link {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-service-link:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-link {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--gray);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .hero-main { font-size: 3.5rem; }
    .concept-story-content { padding: 40px 30px; }
    .company-info { padding: 30px 20px; }
    .company-info-item { grid-template-columns: 1fr; gap: 10px; }
    
    section { padding: 80px 0; }
}
