/* ========================================
   Modern Minimalist Corporate Website
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Clean & Professional */
    --primary-color: #2c5282;      /* Deep blue */
    --primary-light: #4299e1;      /* Light blue */
    --primary-dark: #1a365d;       /* Dark blue */
    --secondary-color: #718096;     /* Gray */
    --accent-color: #e53e3e;        /* Red accent */
    --success-color: #38a169;       /* Green */
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --gray-400: #a0aec0;
    --gray-500: #718096;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --gray-900: #171923;
    
    /* Typography */
    --font-family-sans: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-family-heading: 'Noto Sans JP', 'Inter', serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Borders & Shadows */
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-800);
    margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--space-4);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: var(--space-4) 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--gray-800);
    text-decoration: none;
}

.company-name {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-color);
}

.store-name {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-top: 2px;
}

.nav-menu {
    display: none;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: block;
    }
    
    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-item {
        margin-left: var(--space-8);
    }
    
    .nav-link {
        font-weight: 500;
        color: var(--gray-700);
        padding: var(--space-2) 0;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
    }
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    background: none;
    border: 1px solid var(--gray-300);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--border-radius);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.language-btn i {
    margin-right: var(--space-2);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    width: 100%;
    padding: var(--space-3);
    border: none;
    background: none;
    text-align: left;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-option:hover {
    background-color: var(--gray-50);
    color: var(--primary-color);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-2);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--gray-700);
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main {
    margin-top: 80px; /* Account for fixed header */
}

/* Home page with hero section doesn't need header margin */
.main:has(.hero) {
    margin-top: 0;
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: var(--gray-900);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
    transition: all 8s ease-in-out;
}

.hero-slide.active .hero-image {
    transform: scale(1.05);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 82, 130, 0.7) 0%,
        rgba(44, 82, 130, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

/* Additional overlay for better text readability */
.hero-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Default Hero Background */
.default-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--white) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--white) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    animation: patternShift 20s ease-in-out infinite;
}

@keyframes patternShift {
    0%, 100% { transform: translateX(-50px) translateY(-50px); }
    50% { transform: translateX(50px) translateY(50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    position: relative;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    color: var(--white);
    /* Clean, elegant background */
    background: rgba(0, 0, 0, 0.75);
    padding: var(--space-4) var(--space-8);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Simple, effective text shadow */
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.4);
    /* Elegant box shadow */
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    /* Smooth transition */
    transition: all 0.3s ease;
}

.hero-title:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-2px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: var(--space-6);
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.4);
    padding: var(--space-2) var(--space-5);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--space-8);
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-4) var(--space-6);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

.btn-hero {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-hero::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-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-hero i {
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: translateX(3px);
}

.btn-primary.btn-hero {
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.15);
    text-shadow: none;
}

.btn-outline.btn-hero {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.6);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Hero Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--white), var(--primary-light));
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white));
}

/* Enhanced Navigation Controls */
.hero-controls {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    z-index: 4;
    background: rgba(0, 0, 0, 0.1);
    padding: var(--space-3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-nav {
    display: flex;
    gap: var(--space-4);
}

.hero-prev,
.hero-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-prev::before,
.hero-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-prev:hover::before,
.hero-next:hover::before {
    width: 100px;
    height: 100px;
}

/* Enhanced Indicators */
.hero-indicators {
    display: flex;
    gap: var(--space-3);
    align-items: center;
}

.hero-indicator {
    width: 50px;
    height: 6px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--white), var(--primary-light));
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.hero-indicator.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scaleY(1.5);
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-indicator.active .indicator-progress {
    width: 100%;
}

/* Slide Counter */
.hero-counter {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    color: var(--white);
    font-family: var(--font-family-sans);
    font-weight: 600;
    font-size: var(--text-lg);
    background: rgba(0, 0, 0, 0.5);
    padding: var(--space-2) var(--space-4);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.slide-separator {
    opacity: 0.6;
    margin: 0 var(--space-1);
}

/* Auto-play Controls */
.hero-autoplay {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    z-index: 4;
}

.autoplay-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.autoplay-toggle:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Text Animations */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: textFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes textFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-controls {
        bottom: var(--space-6);
    }
    
    .hero-nav {
        display: none; /* Hide on mobile for cleaner look */
    }
    
    .hero-prev,
    .hero-next {
        width: 50px;
        height: 50px;
        font-size: var(--text-lg);
    }
    
    .hero-indicator {
        width: 40px;
        height: 4px;
    }
    
    .hero-counter {
        font-size: var(--text-base);
        padding: var(--space-1) var(--space-3);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 250px;
        justify-content: center;
    }
    
    /* Enhanced text visibility on mobile */
    .hero-title {
        font-weight: 700;
        background: rgba(0, 0, 0, 0.8);
        padding: var(--space-3) var(--space-6);
        margin: 0 var(--space-3) var(--space-4);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.9),
            0 4px 16px rgba(0, 0, 0, 0.5);
        box-shadow: 
            0 8px 30px rgba(0, 0, 0, 0.4),
            0 3px 8px rgba(0, 0, 0, 0.3);
    }
    
    .hero-subtitle {
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        padding: var(--space-3) var(--space-5);
        border-radius: 10px;
        margin: 0 var(--space-4) var(--space-6);
    }
    
    .hero-description {
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        margin: 0 var(--space-3) var(--space-8);
        padding: var(--space-5) var(--space-6);
    }
}

@media (max-width: 480px) {
    .hero-autoplay {
        top: var(--space-4);
        right: var(--space-4);
    }
    
    .autoplay-toggle {
        width: 40px;
        height: 40px;
        font-size: var(--text-sm);
    }
    
    /* Clean title design for very small screens */
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        font-weight: 700;
        background: rgba(0, 0, 0, 0.85);
        padding: var(--space-3) var(--space-4);
        margin: 0 var(--space-2) var(--space-4);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.9),
            0 4px 16px rgba(0, 0, 0, 0.6);
        box-shadow: 
            0 6px 25px rgba(0, 0, 0, 0.5),
            0 2px 6px rgba(0, 0, 0, 0.4);
    }
}

/* Sections */
.section {
    padding: var(--space-20) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* About Preview Section */
.about-preview {
    background-color: var(--gray-50);
    padding: var(--space-20) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    order: 2;
}

@media (min-width: 1024px) {
    .about-text {
        order: 1;
    }
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    order: 1;
}

@media (min-width: 1024px) {
    .about-images {
        order: 2;
    }
}

.about-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Business Preview */
.business-preview {
    padding: var(--space-20) 0;
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.business-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.business-image {
    height: 200px;
    overflow: hidden;
}

.business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.business-card:hover .business-image img {
    transform: scale(1.05);
}

.business-content {
    padding: var(--space-6);
}

.business-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--primary-color);
}

.business-description {
    color: var(--gray-600);
    line-height: 1.6;
}

.business-action {
    text-align: center;
}

/* Store Preview */
.store-preview {
    background-color: var(--gray-50);
    padding: var(--space-20) 0;
}

.store-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .store-content {
        grid-template-columns: 1fr 2fr;
    }
}

.store-info {
    text-align: center;
}

@media (min-width: 1024px) {
    .store-info {
        text-align: left;
    }
}

.store-name {
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

.store-address {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .store-address {
        justify-content: flex-start;
    }
}

.store-address i {
    margin-right: var(--space-2);
    color: var(--primary-color);
}

.store-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.store-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.store-image:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Gallery Preview */
.gallery-preview {
    padding: var(--space-20) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: var(--space-20) 0 var(--space-12);
    text-align: center;
}

.breadcrumb {
    margin-bottom: var(--space-6);
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 var(--space-2);
}

.breadcrumb-current {
    font-weight: 600;
}

.page-title {
    font-size: var(--text-5xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.page-subtitle {
    font-size: var(--text-xl);
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--gray-800);
    color: var(--gray-300);
    padding: var(--space-16) 0 var(--space-6);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.footer-store {
    font-size: var(--text-lg);
    color: var(--primary-light);
    margin-bottom: var(--space-4);
}

.footer-address,
.footer-contact {
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: var(--space-2);
    width: 16px;
}

.footer-section-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.footer-text {
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--gray-300);
    font-size: var(--text-sm);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-6);
    text-align: center;
}

.copyright {
    font-size: var(--text-sm);
    color: var(--gray-400);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: var(--space-20) 0;
    text-align: center;
}

.cta-title {
    font-size: var(--text-4xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.cta-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-actions .btn-primary:hover {
    background-color: var(--gray-100);
    border-color: var(--gray-100);
}

.cta-actions .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.cta-actions .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Company Overview */
.company-overview {
    padding: var(--space-20) 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .overview-content {
        grid-template-columns: 2fr 1fr;
    }
}

.overview-title {
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.store-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-600);
    margin-bottom: var(--space-8);
}

.company-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.overview-images {
    display: grid;
    gap: var(--space-4);
}

.overview-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.image-caption {
    font-size: var(--text-sm);
    color: var(--gray-600);
    text-align: center;
    margin-top: var(--space-2);
    margin-bottom: 0;
}

/* Company Info */
.company-info {
    background-color: var(--gray-50);
    padding: var(--space-20) 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    background-color: var(--white);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-3);
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: var(--space-2);
}

.info-content {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-description {
        font-size: var(--text-base);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .page-title {
        font-size: var(--text-3xl);
    }
    
    .cta-title {
        font-size: var(--text-3xl);
    }
    
    .overview-title {
        font-size: var(--text-3xl);
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Business Detail Styles */
.business-detail,
.sub-business-detail {
    padding: var(--space-20) 0;
}

.sub-business-detail {
    background-color: var(--gray-50);
}

.business-section {
    margin-bottom: var(--space-16);
}

.business-category {
    font-size: var(--text-xl);
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--space-12);
}

.service-list {
    list-style: none;
    margin: var(--space-6) 0;
    padding-left: 0;
}

.service-list li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-2);
    color: var(--gray-700);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Store Detail Styles */
.store-information {
    padding: var(--space-20) 0;
}

.store-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: start;
}

@media (min-width: 1024px) {
    .store-overview {
        grid-template-columns: 2fr 1fr;
    }
}

.store-gallery {
    display: grid;
    gap: var(--space-4);
}

.store-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.store-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.store-gallery-item:hover img {
    transform: scale(1.05);
}

.store-details {
    background-color: var(--gray-50);
    padding: var(--space-20) 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-card {
    background-color: var(--white);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.detail-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.detail-info {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0;
}

.store-services {
    padding: var(--space-20) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: var(--white);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-2xl);
    margin: 0 auto var(--space-4);
}

.service-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-3);
}

.service-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Map Section */
.store-map {
    background-color: var(--gray-50);
    padding: var(--space-20) 0;
}

.map-container {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
}

.map-info {
    text-align: center;
    color: var(--gray-600);
}

.map-info i {
    font-size: var(--text-5xl);
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

/* Contact Styles */
.contact-methods {
    padding: var(--space-20) 0;
    background-color: var(--gray-50);
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.method-card {
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-2xl);
    margin: 0 auto var(--space-4);
}

.method-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-3);
}

.method-info {
    font-size: var(--text-lg);
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.method-hours {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-section {
    padding: var(--space-20) 0;
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.form-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}

.required {
    color: var(--accent-color);
    font-weight: bold;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: var(--text-base);
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    cursor: pointer;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--primary-color);
}

.checkbox-text {
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: 1.5;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: var(--space-8);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    gap: var(--space-2);
}

/* Privacy Policy */
.privacy-policy {
    background-color: var(--gray-50);
    padding: var(--space-20) 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-700);
}

.privacy-content h3 {
    color: var(--primary-color);
    font-size: var(--text-lg);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

.privacy-content h4 {
    color: var(--primary-color);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

.contact-privacy {
    background-color: var(--white);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    margin-top: var(--space-6);
    border-left: 4px solid var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-20) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-4);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--space-6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-question h3 {
    margin: 0;
    font-size: var(--text-lg);
    color: var(--gray-800);
}

.faq-question i {
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: var(--text-lg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 0 var(--space-6) var(--space-6);
    margin: 0;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero-nav,
    .hero-indicators,
    .btn,
    .cta-section {
        display: none !important;
    }
    
    .main {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section {
        padding: 20pt 0;
    }
}

/* Version Switch for Desktop */
.version-switch {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    margin-top: 10px;
}

.mobile-version-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-version-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.mobile-version-link i {
    margin-right: 6px;
    font-size: 14px;
    color: #3498db;
}