/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
  .container {
        padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
        padding: 0 2.5rem;
    }
}

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

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

@media (min-width: 640px) {
    .nav-content {
        padding: 1.25rem 0;
    }
}

@media (min-width: 768px) {
    .nav-content {
        padding: 1.5rem 0;
    }
}

/* Logo */
.logo a {
    font-size: 1.5rem;
    font-weight: 300;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #14b8a6;
}

/* Desktop Menu */
.desktop-menu {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #14b8a6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: #14b8a6;
    transition: width 0.3s ease;
}

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

/* Booking Buttons */
.header-booking-btn {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
  color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
  text-decoration: none;
    font-size: 1rem;
  transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(20, 184, 166, 0.1);
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

.header-booking-btn:hover {
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.2);
}

.header-booking-btn-mobile {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(20, 184, 166, 0.1);
    display: inline-block;
    min-width: 100px;
    text-align: center;
}

.header-booking-btn-mobile:hover {
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
  transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.2);
}

.desktop-user-section {
    display: none;
    margin-left: 2.5rem;
    align-items: center;
    gap: 1rem;
}

/* User Icon Styles */
.header-user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #6b7280;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
}

.header-user-icon:hover {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #374151;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
}

/* Logged in user icon styles */
.header-user-icon[href="/mypage"] {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: white;
    border-color: #14b8a6;
    box-shadow: 0 2px 4px rgba(20, 184, 166, 0.2);
}

.header-user-icon[href="/mypage"]:hover {
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
    border-color: #0f766e;
    box-shadow: 0 4px 8px rgba(20, 184, 166, 0.3);
}

.header-user-icon i {
    font-size: 1.1rem;
}

.desktop-booking-btn {
    display: none;
    margin-left: 2.5rem;
}

@media (min-width: 768px) {
    .desktop-user-section {
        display: flex;
    }
}

/* Desktop Auth Buttons */
.desktop-auth-buttons {
    display: none;
    margin-left: 1rem;
}

@media (min-width: 768px) {
    .desktop-auth-buttons {
        display: block;
    }
}

.desktop-auth-buttons a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.desktop-auth-buttons .bg-blue-600 {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%) !important;
    transition: all 0.3s ease;
}

.desktop-auth-buttons .bg-blue-600:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.mobile-user-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .mobile-user-section {
        display: none;
    }
}

.header-user-icon-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #6b7280;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
}

.header-user-icon-mobile:hover {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #374151;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
}

.header-user-icon-mobile i {
    font-size: 1rem;
}

/* Logged in mobile user icon styles */
.header-user-icon-mobile[href="/mypage"] {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: white;
    border-color: #14b8a6;
    box-shadow: 0 2px 4px rgba(20, 184, 166, 0.2);
}

.header-user-icon-mobile[href="/mypage"]:hover {
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
    border-color: #0f766e;
    box-shadow: 0 4px 8px rgba(20, 184, 166, 0.3);
}



/* Mobile Menu (CSS-based) */
.mobile-menu-toggle {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Hide checkbox */
.mobile-menu-checkbox {
    display: none;
}

.menu-btn {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.menu-btn:hover {
    color: #14b8a6;
}

/* Menu icons - Default state */
.menu-icon-open {
    display: inline-block !important;
}

.menu-icon-close {
    display: none !important;
}

/* Show/hide icons based on checkbox state */
#mobile-menu-checkbox:checked ~ .nav-content .menu-btn .menu-icon-open {
    display: none !important;
}

#mobile-menu-checkbox:checked ~ .nav-content .menu-btn .menu-icon-close {
    display: inline-block !important;
}

.mobile-menu {
    display: none;
    padding: 1.5rem 0;
    border-top: 1px solid #e6fffa;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

/* Show menu when checkbox is checked */
#mobile-menu-checkbox:checked ~ .mobile-menu {
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: #6b7280;
  text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 0.5rem;
    transition: color 0.3s ease;
}

/* Mobile Auth Section */
.mobile-auth-section {
    border-top: 1px solid #e6fffa;
    padding-top: 1rem;
    margin-top: 1rem;
}

.mobile-user-info {
    padding: 0.75rem 0.5rem;
    margin-bottom: 0.5rem;
}

.mobile-nav-link:hover {
    color: #14b8a6;
}

/* Main Content */
main {
    padding-top: 4.5rem;
}

@media (min-width: 640px) {
    main {
        padding-top: 5.5rem;
    }
}

@media (min-width: 768px) {
    main {
        padding-top: 6.5rem;
    }
}

/* ========================================
   HERO SECTIONS - 共通スタイル
   ======================================== */

/* 共通ヒーローセクションの基本スタイル */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 50%, #ecfdf5 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* TOPページ専用ヒーローセクション */
.hero-section.top-hero {
    min-height: 100vh;
    padding: 8rem 0 4rem 0;
}

/* その他のページ用ヒーローセクション */
.hero-section:not(.top-hero) {
    min-height: 50vh;
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .hero-section:not(.top-hero) {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .hero-section:not(.top-hero) {
        padding: 5rem 0;
    }
}



.hero-background {
  position: absolute;
    inset: 0;
    opacity: 0.2;
}

.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

.blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(20, 184, 166, 0.4);
    animation-delay: 0s;
}

.blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 12rem;
    height: 12rem;
    background: rgba(6, 182, 212, 0.4);
    animation-delay: 1s;
}

.blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6rem;
    height: 6rem;
    background: rgba(16, 185, 129, 0.3);
    animation-delay: 0.5s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* TOPページ用の2カラムレイアウト */
.top-hero .hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (min-width: 768px) {
    .top-hero .hero-content {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .top-hero .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }
}

/* その他のページ用の1カラム中央揃えレイアウト */
.hero-section:not(.top-hero) .hero-content {
    display: block;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    width: 100%;
}

/* TOPページ用のHero Text */
.top-hero .hero-text {
    opacity: 0;
    transform: translateX(-2.5rem);
    animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    color: #14b8a6;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: #1f2937;
  line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-title {
        font-size: 3rem;
  }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-accent {
    color: #14b8a6;
    position: relative;
}

.title-underline {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 0.75rem;
}

.draw-animation {
    stroke-dasharray: 0 1000;
    animation: draw 2s ease-in-out forwards;
}

@keyframes draw {
    to {
        stroke-dasharray: 1000 0;
    }
}

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

/* TOPページ用のhero-description */
.top-hero .hero-description {
    max-width: 28rem;
}

/* その他のページ用のhero-description */
.hero-section:not(.top-hero) .hero-description {
    max-width: 48rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}



.hero-buttons {
  display: flex;
    flex-direction: column;
  gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
        flex-direction: row;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
}

.stars {
  display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #14b8a6;
    font-size: 1rem;
}

.stats-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Hero Image */
.hero-image {
    opacity: 0;
    transform: translateX(2.5rem);
    animation: slideInRight 1s ease-out 0.3s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -3px rgba(20, 184, 166, 0.1), 0 4px 6px -2px rgba(20, 184, 166, 0.05);
    aspect-ratio: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    transition: transform 0.7s ease;
}

.image-container:hover .hero-img {
    transform: scale(1.1);
}

.image-overlay {
  position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 184, 166, 0.2), transparent);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.7s ease;
}

@media (min-width: 640px) {
    .floating-element {
        width: 4rem;
        height: 4rem;
    }
}

.image-container:hover + .floating-element,
.image-container:hover ~ .floating-element {
    opacity: 1;
}

.floating-leaf {
    top: -1rem;
    right: -1rem;
    color: #14b8a6;
}

.floating-sparkles {
    bottom: -1rem;
    left: -1rem;
    color: #16a34a;
    animation-delay: 0.5s;
}

/* ========================================
   BUTTON STYLES
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Button Variants */
.btn-primary {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(20, 184, 166, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.2);
}

.btn-secondary {
    background: white;
    color: #14b8a6;
    border: 2px solid #14b8a6;
    box-shadow: 0 4px 6px -1px rgba(20, 184, 166, 0.1);
}

.btn-secondary:hover {
    background: #f0fdfa;
    border-color: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #14b8a6;
    transform: translateY(-2px);
}

/* Button Sizes */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Button Icons */
.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(0.25rem);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.features-section,
.services-section {
    padding: 5rem 0;
}

.features-section {
    background: white;
}

.services-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 50%, #ecfdf5 100%);
}

/* ========================================
   SECTION HEADER STYLES
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 300;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-subtitle {
        font-size: 1.125rem;
    }
}

/* ========================================
   GRID LAYOUTS
   ======================================== */
/* Features Grid */
.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: #f0fdfa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #e6fffa;
}

.feature-icon i {
    font-size: 2rem;
    color: #14b8a6;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.service-card {
  background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -3px rgba(20, 184, 166, 0.1), 0 4px 6px -2px rgba(20, 184, 166, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.25);
}

.service-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 184, 166, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-content {
    padding: 2rem;
}

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

.service-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    text-align: center;
}

.cta-content {
    max-width: 42rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 300;
    color: white;
    line-height: 1.2;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background: #1f2937;
  color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
    grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
  }
}

@media (min-width: 1024px) {
    .footer-content {
    grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .social-link {
        width: 3rem;
        height: 3rem;
    }
}

.social-link:hover {
    background: #14b8a6;
    color: white;
    transform: translateY(-2px);
}

.footer-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links,
.footer-info {
  list-style: none;
}

.footer-links li,
.footer-info li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
    color: #14b8a6;
}

.footer-info li {
    color: #d1d5db;
  display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-info i {
    color: #14b8a6;
    width: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
  color: #9ca3af;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   BOOKING PAGE - 共通ヒーローを使用
   ======================================== */

/* booking-heroクラスは不要（.hero-sectionを使用） */

.booking-section {
    padding: 3rem 0;
    background: white;
}

@media (min-width: 640px) {
    .booking-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .booking-section {
        padding: 5rem 0;
    }
}

/* Logged-in User Info */
.logged-in-info {
    margin-bottom: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    border: 1px solid #5eead4;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.info-header i {
    color: #14b8a6;
    font-size: 1.25rem;
}

.info-header span {
    font-weight: 600;
    color: #0d9488;
    font-size: 1rem;
}

.info-text {
    color: #374151;
    font-size: 0.875rem;
    margin: 0;
}

/* Login/Register Page Styles */
.auth-container {
    min-height: 100vh;
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .auth-container {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .auth-container {
        padding: 3rem 2rem;
    }
}

.auth-form-container {
    max-width: 28rem;
    margin: 0 auto;
    width: 100%;
}

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

.auth-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.auth-form-card {
    background: white;
    padding: 2rem 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border-radius: 0.5rem;
}

@media (min-width: 640px) {
    .auth-form-card {
        padding: 2rem 2.5rem;
        border-radius: 0.5rem;
    }
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-input {
    appearance: none;
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    color: #374151;
    background-color: white;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-input:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-checkbox {
    height: 1rem;
    width: 1rem;
    color: #14b8a6;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
}

.form-checkbox:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

.form-row-left {
    display: flex;
    align-items: center;
}

.form-row-left label {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    color: #111827;
}

.form-row-right {
    font-size: 0.875rem;
}

.form-row-right a {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 500;
}

.form-row-right a:hover {
    color: #0d9488;
}

.auth-button {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
    cursor: pointer;
}

.auth-button-primary {
    color: white;
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    border-color: #14b8a6;
}

.auth-button-primary:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    border-color: #0d9488;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.auth-button-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.auth-divider {
    position: relative;
    margin: 1.5rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #d1d5db;
}

.auth-divider-text {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 0.875rem;
    color: #6b7280;
    background-color: white;
    padding: 0 0.5rem;
}

.auth-alternative {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-alternative p {
    font-size: 0.875rem;
    color: #6b7280;
}

.auth-alternative a {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 500;
}

.auth-alternative a:hover {
    color: #0d9488;
}

.auth-error {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.auth-success {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.required {
    color: #dc2626;
}

.auth-complete {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-complete-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #ccfbf1;
    margin-bottom: 1rem;
}

.auth-complete-icon svg {
    height: 1.5rem;
    width: 1.5rem;
    color: #14b8a6;
}

.auth-complete-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.auth-complete-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.auth-complete-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.auth-complete-actions .auth-button-secondary {
    color: #374151;
    background-color: white;
    border-color: #d1d5db;
}

.auth-complete-actions .auth-button-secondary:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.booking-form-container {
    max-width: 64rem;
    margin: 0 auto;
}

/* Success Message */
.success-message {
    max-width: 64rem;
    margin: 0 auto;
}

.success-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 25px -3px rgba(20, 184, 166, 0.1), 0 4px 6px -2px rgba(20, 184, 166, 0.05);
    border: 0;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .success-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .success-card {
        padding: 4rem;
    }
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
  border-radius: 50%;
    background: #f0fdfa;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .success-icon {
        width: 5rem;
        height: 5rem;
        margin-bottom: 2rem;
    }
}

.success-icon i {
    font-size: 2rem;
    color: #14b8a6;
}

@media (min-width: 640px) {
    .success-icon i {
        font-size: 2.5rem;
    }
}

.success-card h3 {
    font-size: 1.25rem;
    font-weight: 300;
    color: #14b8a6;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .success-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.success-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .success-card p {
  font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
}

.booking-id {
  font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

/* Booking Details */
.booking-details {
    margin: 1.5rem 0;
}

.details-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: left;
}

.details-card h4 {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #64748b;
    font-weight: 500;
    min-width: 80px;
}

.detail-value {
    color: #1e293b;
    font-weight: 600;
    text-align: right;
    flex: 1;
    margin-left: 1rem;
}

@media (min-width: 640px) {
    .booking-id {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.notice {
  font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .notice {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

/* Booking Form */
.booking-form-wrapper {
    max-width: 64rem;
    margin: 0 auto;
}

.booking-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -3px rgba(20, 184, 166, 0.1), 0 4px 6px -2px rgba(20, 184, 166, 0.05);
    border: 0;
    transition: all 0.3s ease;
}

.booking-card:hover {
    box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.25);
}

.booking-header {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem 1rem 0 0;
}

@media (min-width: 640px) {
    .booking-header {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .booking-header {
        padding: 2.5rem;
    }
}

.booking-header h2 {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .booking-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .booking-header h2 {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
}

.booking-header p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .booking-header p {
        font-size: 1.125rem;
    }
}

.booking-content {
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .booking-content {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .booking-content {
        padding: 2.5rem;
    }
}

/* ========================================
   FORM STYLES
   ======================================== */
.form-group {
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .form-group {
        margin-bottom: 2rem;
    }
}

.form-label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .form-label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    background: rgba(249, 250, 251, 0.5);
    transition: all 0.3s ease;
    height: 3rem;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .form-input,
    .form-select {
        padding: 1rem;
        font-size: 1rem;
        height: 3.5rem;
        box-sizing: border-box;
    }
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
    }
}

/* Selected Date/Time Display */
.selected-date-display,
.selected-time-display {
    padding: 0.75rem;
    background: #f0fdfa;
    border-radius: 0.5rem;
    border: 1px solid #a7f3d0;
  margin-bottom: 1rem;
}

.selected-date-text,
.selected-time-text {
    color: #065f46;
    font-weight: 500;
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 640px) {
    .selected-date-text,
    .selected-time-text {
        font-size: 1rem;
    }
}

/* Calendar Styles */
.calendar-container {
  display: flex;
    justify-content: center;
}

.calendar-wrapper {
    background: rgba(249, 250, 251, 0.5);
  padding: 1rem;
  border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    max-width: 20rem;
    width: 100%;
}

@media (min-width: 640px) {
    .calendar-wrapper {
        padding: 1.5rem;
        max-width: 24rem;
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .calendar-wrapper {
        padding: 2rem;
        max-width: 28rem;
        width: 100%;
    }
}

.calendar-header {
  display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.calendar-title {
    font-size: 1.125rem;
  font-weight: 500;
    color: #374151;
    margin: 0;
}

@media (min-width: 640px) {
    .calendar-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .calendar-title {
        font-size: 1.5rem;
    }
}

.calendar-nav {
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.6;
}

@media (min-width: 640px) {
    .calendar-nav {
        font-size: 1.25rem;
        padding: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .calendar-nav {
        font-size: 1.5rem;
        padding: 1rem;
    }
}

.calendar-nav:hover {
    opacity: 1;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #a7f3d0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.weekday {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    padding: 0.5rem 0;
}

@media (min-width: 640px) {
    .weekday {
        font-size: 0.875rem;
        padding: 0.75rem 0;
    }
}

@media (min-width: 1024px) {
    .weekday {
  font-size: 1rem;
        padding: 1rem 0;
    }
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-day {
    aspect-ratio: 1;
  display: flex;
  align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 400;
    color: #374151;
    cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
    border: 1px solid transparent;
}

@media (min-width: 640px) {
    .calendar-day {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .calendar-day {
        font-size: 1.125rem;
    }
}

.calendar-day:hover {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
    border-color: #a7f3d0;
    transform: scale(1.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%) !important;
    color: white !important;
    transform: scale(1.1) !important;
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.3) !important;
    border: 2px solid #a7f3d0 !important;
    animation: pulse 2s infinite !important;
}

.calendar-day.today {
    background: linear-gradient(135deg, #fed7aa 0%, #fde68a 100%);
    color: #92400e;
    font-weight: 600;
    border: 1px solid #f59e0b;
}

.calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    background: rgba(249, 250, 251, 0.3);
}

.calendar-day.disabled:hover {
    transform: none;
    box-shadow: none;
    background: rgba(249, 250, 251, 0.3);
}

.calendar-day.outside {
    color: #9ca3af;
    opacity: 0.4;
}

.calendar-day.selectable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-day.selectable:hover {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
    border-color: #a7f3d0;
    transform: scale(1.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Time Selection */
.time-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

/* Loading and No Slots Messages */
.loading-message,
.no-slots-message {
    width: 100%;
    text-align: center;
    padding: 3rem 2rem;
    color: #64748b;
}

.loading-message span,
.no-slots-message p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    white-space: nowrap;
}

.no-slots-message p:first-child {
    margin-bottom: 0.5rem;
}

.refresh-btn {
    background: white;
    border: 1px solid #d1d5db;
    color: #6b7280;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 640px) {
    .refresh-btn {
        padding: 0.625rem 1rem;
  font-size: 0.875rem;
}
}

.refresh-btn:hover {
    background: #f9fafb;
    border-color: #14b8a6;
    color: #14b8a6;
}

.refresh-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.refresh-text {
    display: none;
}

@media (min-width: 640px) {
    .refresh-text {
        display: inline;
    }
}

.time-slots-container {
    background: rgba(249, 250, 251, 0.5);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
}

@media (min-width: 640px) {
    .time-slots-container {
        padding: 1rem;
    }
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    .time-slots {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .time-slots {
        grid-template-columns: repeat(6, 1fr);
    }
}

.time-slot {
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    background: white;
    cursor: pointer;
  transition: all 0.3s ease;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .time-slot {
        padding: 0.75rem;
        font-size: 0.875rem;
        min-height: 3rem;
    }
}

.time-slot:hover {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
    border-color: #a7f3d0;
    transform: scale(1.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.time-slot.selected {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.3);
    border: 2px solid #a7f3d0;
}

.time-slot.loading {
    opacity: 0.5;
    cursor: not-allowed;
}

.loading-message {
    text-align: center;
  padding: 2rem;
    color: #6b7280;
}

.loading-message i {
    margin-right: 0.5rem;
    color: #14b8a6;
}

.no-slots-message {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

.no-slots-message p:first-child {
    margin-bottom: 0.5rem;
}

.no-slots-message p:last-child {
    font-size: 0.875rem;
    color: #9ca3af;
}



/* Submit Button */
.btn-submit {
    width: auto;
    min-width: 200px;
    height: 3rem;
  font-size: 0.875rem;
    margin: 0 auto;
    display: block;
}

@media (min-width: 640px) {
    .btn-submit {
        min-width: 250px;
        height: 3.5rem;
  font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .btn-submit {
        min-width: 300px;
    }
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: 0 4px 6px -1px rgba(20, 184, 166, 0.1);
}

/* Login Section */
.login-section {
    margin-bottom: 2rem;
}

.login-toggle {
    display: flex;
    background: #f3f4f6;
    border-radius: 0.5rem;
    padding: 0.25rem;
    gap: 0.25rem;
}

.login-toggle-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .login-toggle-btn {
        padding: 1rem 1.5rem;
  font-size: 1rem;
    }
}

.login-toggle-btn.active {
    background: white;
    color: #14b8a6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.login-toggle-btn:hover:not(.active) {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

/* Guest Section */
.guest-section {
    /* Default styles inherited from form-group */
}

/* Login Form Section */
.login-form-section {
    /* Default styles inherited from form-group */
}

.login-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .login-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.forgot-password {
    color: #14b8a6;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #0f766e;
    text-decoration: underline;
}

.register-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.register-link p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.register-link a {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: #0f766e;
    text-decoration: underline;
}

/* Register Form Section */
.register-form-section {
    /* Default styles inherited from form-group */
}

.register-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .register-actions {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

.register-actions .btn {
    min-width: 150px;
}

@media (min-width: 640px) {
    .register-actions .btn {
        min-width: 180px;
    }
}

/* User Info Display */
.user-info {
    background: #f0fdfa;
    border: 1px solid #a7f3d0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.user-info-content {
  display: flex;
  align-items: center;
    gap: 0.75rem;
}

.user-info-content i {
    color: #14b8a6;
  font-size: 1.25rem;
}

.user-info-content span {
    flex: 1;
    color: #065f46;
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .user-info-content span {
        font-size: 1rem;
    }
}

.logout-btn {
    background: none;
    border: none;
    color: #14b8a6;
  cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(20, 184, 166, 0.1);
    color: #0f766e;
}

/* ========================================
   ABOUT PAGE - 共通ヒーローを使用
   ======================================== */

/* about-heroクラスは不要（.hero-sectionを使用） */

.about-hero-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
  position: relative;
    z-index: 10;
}

.title-underline {
  position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 0.75rem;
}

@keyframes draw {
    from {
        stroke-dasharray: 300;
        stroke-dashoffset: 300;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.animate-draw {
    animation: draw 2s ease-out forwards;
}

.about-section {
    padding: 5rem 0;
    background: white;
}

@media (min-width: 640px) {
    .about-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 8rem 0;
    }
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-subtitle {
    color: #14b8a6;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: #1f2937;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-text p {
    color: #6b7280;
    font-size: 1.125rem;
  line-height: 1.7;
}

.about-image {
    position: relative;
}

.map-container {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.25);
    transition: all 0.3s ease;
    background: white;
}

.map-container:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 35px 60px -12px rgba(20, 184, 166, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1.5rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .map-container {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .map-container {
        aspect-ratio: 1;
    }
}

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

.mission-content {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-text {
    color: #6b7280;
    font-size: 1.125rem;
  line-height: 1.7;
}

.team-section {
    margin-bottom: 5rem;
}

.section-header {
  text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.team-member {
  background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.25);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 35px 60px -12px rgba(20, 184, 166, 0.3);
}

.member-image {
    position: relative;
    height: 20rem;
  overflow: hidden;
}

.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    transition: transform 0.7s ease;
}

.team-member:hover .member-img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
    color: #1f2937;
  margin-bottom: 0.5rem;
}

.member-role {
    color: #6b7280;
  margin-bottom: 1rem;
}

.member-booking {
    color: #14b8a6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.member-booking:hover {
    color: #0f766e;
}

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

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-text {
    color: #6b7280;
    font-size: 1.125rem;
  line-height: 1.7;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
    min-width: 200px;
}

@media (min-width: 640px) {
    .btn-large {
        padding: 1.25rem 2.5rem;
        font-size: 1.25rem;
        min-width: 250px;
    }
}

/* ========================================
   SERVICES PAGE - 共通ヒーローを使用
   ======================================== */

/* services-heroクラスは不要（.hero-sectionを使用） */

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.services-hero-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.services-section {
    padding: 5rem 0;
    background: white;
}

@media (min-width: 640px) {
    .services-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .services-section {
        padding: 8rem 0;
    }
}

.services-tabs {
    width: 100%;
}

.tabs-header {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.tabs-list {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid #a7f3d0;
    border-radius: 9999px;
    padding: 0.25rem;
    display: flex;
    gap: 0.25rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .tab-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.tab-btn.active {
    background: #14b8a6;
  color: white;
}

.tab-btn:hover:not(.active) {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.services-grid {
  display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.service-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.25);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 35px 60px -12px rgba(20, 184, 166, 0.3);
}

.service-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

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

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

.service-info {
    padding: 2rem;
}

.service-name {
    font-size: 1.25rem;
  font-weight: 600;
    color: #1f2937;
  margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-name {
    color: #14b8a6;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details {
  display: flex;
    justify-content: space-between;
  align-items: center;
    margin-bottom: 1.5rem;
}

.service-price {
    display: flex;
    align-items: center;
    color: #14b8a6;
    font-weight: 600;
    font-size: 1.125rem;
}

.service-price i {
    margin-right: 0.25rem;
    font-size: 1rem;
}

.service-duration {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.service-duration i {
    margin-right: 0.25rem;
}

.service-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ========================================
   GALLERY PAGE - 共通ヒーローを使用
   ======================================== */

/* gallery-heroクラスは不要（.hero-sectionを使用） */

.gallery-hero-content {
  text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.gallery-section {
    padding: 5rem 0;
    background: white;
}

@media (min-width: 640px) {
    .gallery-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .gallery-section {
        padding: 8rem 0;
    }
}

.gallery-tabs {
    width: 100%;
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.gallery-item {
  position: relative;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.25);
  overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 35px 60px -12px rgba(20, 184, 166, 0.3);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
  color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .gallery-caption {
        font-size: 1rem;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
  position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 1rem;
  overflow: hidden;
}

.lightbox-close {
  position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.lightbox-image-container {
  width: 100%;
    height: 70vh;
  position: relative;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-caption {
    padding: 1.5rem;
    text-align: center;
    color: #1f2937;
    font-weight: 500;
  font-size: 1.125rem;
    margin: 0;
}

/* ========================================
   CONTACT PAGE - 共通ヒーローを使用
   ======================================== */

/* contact-heroクラスは不要（.hero-sectionを使用） */

.contact-hero-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
  position: relative;
  z-index: 10;
}

.contact-section {
    padding: 5rem 0;
    background: white;
}

@media (min-width: 640px) {
    .contact-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .contact-section {
        padding: 8rem 0;
    }
}

.contact-grid {
    display: grid;
    gap: 4rem;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.25);
    padding: 2rem;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .contact-info-card,
  .contact-form-card {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-info-card,
    .contact-form-card {
        padding: 3rem;
    }
}

.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 35px 60px -12px rgba(20, 184, 166, 0.3);
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .contact-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: #f0fdfa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #14b8a6;
    font-size: 1.25rem;
}

.contact-content {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-text {
    color: #6b7280;
    line-height: 1.6;
}

.contact-text p {
    margin: 0;
}

.contact-text p + p {
    margin-top: 0.25rem;
}

.social-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.social-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: #f0fdfa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #14b8a6;
    color: white;
    transform: translateY(-0.25rem);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    background: rgba(249, 250, 251, 0.5);
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 6rem;
}

@media (min-width: 640px) {
    .form-textarea {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
}

.form-textarea:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    background: white;
}

.contact-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.success-message {
    text-align: center;
    padding: 3rem 0;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #f0fdfa;
    margin-bottom: 0;
}

.success-icon i {
    font-size: 2.5rem;
    color: #14b8a6;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #14b8a6;
    margin: 0;
}

.success-text {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.map-section {
    margin-top: 5rem;
  }
  
  .map-container {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.25);
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 35px 60px -12px rgba(20, 184, 166, 0.3);
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .header,
    .footer,
    .btn {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* MyPage Styles */
.mypage-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* ========================================
   MYPAGE - 共通ヒーローを使用
   ======================================== */

/* mypage-heroクラスは不要（.hero-sectionを使用） */

.mypage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mypage-hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* マイページのヒーローセクション内のテキストスタイルは共通の.hero-sectionを使用 */

.user-info-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.card-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
}

.user-avatar {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.user-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.user-details p {
    margin: 0.25rem 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.user-actions {
    margin-left: auto;
}

.booking-history {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.view-all-link {
    color: #14b8a6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.view-all-link:hover {
    text-decoration: underline;
}

.bookings-list {
    min-height: 200px;
}

.loading-message,
.no-bookings-message {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.loading-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.no-bookings-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: #d1d5db;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: #f9fafb;
}

.booking-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.booking-service,
.booking-datetime,
.booking-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.booking-service i {
    color: #14b8a6;
}

.booking-datetime i {
    color: #6b7280;
}

.booking-status i {
    font-size: 0.5rem;
}

.booking-notes {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.booking-notes i {
    color: #f59e0b;
}

.booking-actions {
    display: flex;
    gap: 0.5rem;
}

.logout-section {
    text-align: center;
    padding: 2rem 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.profile-form {
    padding: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .user-actions {
        margin-left: 0;
    }
    
    
    .booking-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .booking-item {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .booking-actions {
        justify-content: center;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* ========================================
   OPTIONS & PRICING STYLES
   ======================================== */

/* Options Section */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.option-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 3.5rem;
}

.option-item:hover {
    border-color: #14b8a6;
    background: #f0fdfa;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
    transform: translateY(-2px);
}

.option-item.selected {
    border-color: #a7f3d0;
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%) !important;
    color: white !important;
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.3) !important;
    transform: scale(1.1) !important;
    animation: pulse 2s infinite !important;
}

.option-item.selected .option-label {
    color: white;
}

.option-item.selected .option-price {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.option-item.selected .option-duration {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.option-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    color: #374151;
    width: 100%;
    min-height: 2.5rem;
    box-sizing: border-box;
}

.option-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #cbd5e1;
    border-radius: 0.375rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.option-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #14b8a6;
    border-color: #14b8a6;
}

.option-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.option-label {
    flex: 1;
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0.5rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.option-price {
    color: #059669;
    font-weight: 700;
    font-size: 0.85rem;
    background: #ecfdf5;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #d1fae5;
    white-space: nowrap;
    flex-shrink: 0;
}

.option-duration {
    color: #6b7280;
    font-size: 0.8rem;
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Price Summary */
.price-breakdown {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 500;
    color: #374151;
}

.price-value {
    font-weight: 600;
    color: #059669;
}

.total-price {
    border-top: 2px solid #14b8a6;
    border-bottom: none !important;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.total-price .price-label {
    font-weight: 600;
    color: #14b8a6;
    font-size: 1.1rem;
}

.total-price .price-value {
    font-weight: 700;
    color: #14b8a6;
    font-size: 1.2rem;
}

/* Responsive Options */
@media (max-width: 640px) {
    .option-checkbox {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .option-price,
    .option-duration {
        font-size: 0.8rem;
    }
    
    .price-breakdown {
        padding: 1rem;
    }
    
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* ========================================
   CONSENT NOTICE CARD
   ======================================== */
.consent-notice-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    animation: slideInDown 0.5s ease-out;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notice-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.notice-text {
    flex: 1;
}

.notice-text h3 {
    color: #92400e;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.notice-text p {
    color: #92400e;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.notice-actions {
    flex-shrink: 0;
}

.notice-actions .btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.notice-actions .btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.4);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Consent Notice */
@media (max-width: 640px) {
    .consent-notice-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .notice-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .notice-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .notice-text h3 {
        font-size: 1.125rem;
    }
    
    .notice-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
