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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #2c2c2c;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #2c2c2c;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: #2c2c2c;
    color: #fafafa;
    transform: translateY(-2px);
}

.btn-line {
    background: #00C300;
    color: white;
    border: 2px solid #00C300;
}

.btn-line:hover {
    background: #00A300;
    border-color: #00A300;
    transform: translateY(-2px);
}

.btn-phone {
    background: #ffffff;
    color: #2c2c2c;
    border: 2px solid #ffffff;
    font-weight: 600;
}

.btn-phone:hover {
    background: #d4af37;
    color: #2c2c2c;
    border-color: #d4af37;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(250, 250, 250, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.nav-logo h1 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin: 0;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(135deg, #d4af37, #f4e4bc) !important;
    color: #2c2c2c !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 50%, #2c2c2c 100%);
    overflow: hidden;
}



.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(44,44,44,0.8) 0%,
        rgba(44,44,44,0.6) 50%,
        rgba(44,44,44,0.8) 100%
    );
}

.hero-content {
    text-align: center;
    color: #fafafa;
    z-index: 20;
    position: relative;
    max-width: 1000px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-line1 {
    display: block;
    font-size: 1em;
    color: #fafafa;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    line-height: 1.3;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: cinematicReveal 2s ease-out 0.2s forwards;
}

/* Cinematic Reveal Animation */
@keyframes cinematicReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(20px) scale(0.95);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Cinematic Curtain Effect */
.hero-line1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #2c2c2c 0%,
        #2c2c2c 50%,
        transparent 50.1%,
        transparent 100%
    );
    animation: curtainReveal 2.5s ease-in-out 0.5s forwards;
    z-index: 2;
}

.hero-line1::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 49.9%,
        #2c2c2c 50%,
        #2c2c2c 100%
    );
    animation: curtainReveal 2.5s ease-in-out 0.5s forwards;
    z-index: 2;
}

@keyframes curtainReveal {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}

/* Light Reflection Effect - using dynamic element */
.light-reflection {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.9) 50%,
        transparent 100%
    );
    transform: translateY(-50%);
    animation: lightReflection 2.5s ease-out 1;
    z-index: 3;
    pointer-events: none;
}

@keyframes lightReflection {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.hero-line2 {
    display: block;
    font-size: 0.9em;
    color: #d4af37;
    text-align: center;
    width: 100%;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #cccccc;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4e4bc);
}

.section-header h2 .number {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1em;
    color: #d4af37;
    display: inline-block;
    margin: 0 0.1em;
    vertical-align: baseline;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #ffffff;
}

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

.feature-card {
    background: #fafafa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.05), transparent);
    transition: left 0.8s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-voice::before {
    content: '🎵';
    font-size: 2rem;
}

.icon-private::before {
    content: '🏛️';
    font-size: 2rem;
}

.icon-luxury::before {
    content: '👑';
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.service-flow {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.flow-step:nth-child(even) {
    flex-direction: row-reverse;
}

.flow-step:nth-child(even) .step-content {
    text-align: right;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c2c2c;
    margin: 0 40px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.step-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #2c2c2c;
    color: #fafafa;
}

.pricing .section-header h2 {
    color: #fafafa;
}

.pricing .section-subtitle {
    color: #cccccc;
}

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

.pricing-card {
    background: #3a3a3a;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.pricing-card.featured {
    border-color: #d4af37;
    transform: scale(1.05);
}

/* Silver borders for Basic and Premium courses */
.pricing-card:nth-child(1),
.pricing-card:nth-child(3) {
    border: 2px solid #c0c0c0;
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.15);
}

.pricing-card:nth-child(1):hover,
.pricing-card:nth-child(3):hover {
    border-color: #a8a8a8;
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #2c2c2c;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fafafa;
}

.pricing-duration {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-price {
    margin: 30px 0;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: #d4af37;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
}

.pricing-description {
    margin-bottom: 30px;
    color: #cccccc;
    font-style: italic;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 10px 0;
    color: #cccccc;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #ffffff;
}

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

.review-card {
    background: #fafafa;
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid #d4af37;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.review-stars {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
}

.author-name {
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.author-age {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8f8f8;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d4af37;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: background 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafafa;
}

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

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Access Section */
.access {
    padding: 100px 0;
    background: #ffffff;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.salon-info h3 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.info-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.info-label {
    font-weight: bold;
    color: #666;
}

.info-value {
    color: #2c2c2c;
    line-height: 1.6;
}

.google-map {
    border-radius: 15px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Reservation Section */
.reservation {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
    color: #fafafa;
}

.reservation .section-header h2 {
    color: #fafafa;
}

.reservation .section-subtitle {
    color: #cccccc;
}

.reservation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.reservation-card {
    background: #3a3a3a;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reservation-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.reservation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-line::before {
    content: '💬';
    font-size: 2rem;
}

.icon-phone::before {
    content: '📞';
    font-size: 2rem;
}

.icon-web::before {
    content: '💻';
    font-size: 2rem;
}

.reservation-card h3 {
    color: #fafafa;
    margin-bottom: 15px;
}

.reservation-card p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-links {
    text-align: center;
    margin-top: 80px;
}

.social-links h3 {
    color: #fafafa;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fafafa;
    font-size: 1.5rem;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #E4405F, #F77737, #FCAF45);
}

.social-icon.line {
    background: #00C300;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon span {
    font-size: 0.8rem;
    font-weight: bold;
}

.social-description {
    color: #cccccc;
    font-style: italic;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.footer-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #999;
}

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

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

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .reservation-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .nav-menu li {
        margin: 0 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card,
    .pricing-card,
    .review-card {
        padding: 35px 25px;
    }
}

/* Tablet Portrait */
@media (max-width: 900px) {
    .features-grid,
    .pricing-grid,
    .reviews-grid,
    .reservation-methods {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 250px;
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .flow-step {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .flow-step .step-content {
        text-align: center !important;
    }
    
    .step-number {
        margin: 0 0 20px 0;
    }
}

/* Mobile Landscape & Small Tablet */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(250, 250, 250, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(20px);
        padding: 20px 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 10px 20px;
        display: block;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-line1 {
        font-size: 0.9em;
        margin-bottom: 1.5rem;
        text-align: center;
        width: 100%;
        line-height: 1.4;
    }
    
    .hero-line2 {
        font-size: 0.8em;
        text-align: center;
        width: 100%;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 280px;
        padding: 16px 32px;
        font-size: 1rem;
        touch-action: manipulation;
    }
    
    /* Section Spacing */
    .features,
    .services,
    .pricing,
    .reviews,
    .reservation,
    .access {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    /* Grid Layouts */
    .features-grid,
    .pricing-grid,
    .reviews-grid,
    .reservation-methods {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Card Improvements */
    .feature-card,
    .pricing-card,
    .review-card,
    .reservation-card {
        padding: 30px 25px;
        margin-bottom: 0;
    }
    
    .feature-card h3,
    .pricing-card h3,
    .review-card h4 {
        font-size: 1.4rem;
    }
    
    /* Service Flow */
    .flow-step {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .flow-step .step-content {
        text-align: center !important;
    }
    
    .step-number {
        margin: 0 0 20px 0;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    /* Pricing Adjustments */
    .pricing-card.featured {
        transform: none;
        margin-top: 0;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .info-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .info-label {
        font-size: 0.9rem;
    }
    
    /* FAQ Improvements */
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
        font-size: 0.95rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation Mobile */
    .nav-logo h1 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-line1 {
        font-size: 0.8em;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
        line-height: 1.5;
    }
    
    .hero-line2 {
        font-size: 0.7em;
        text-align: center;
        width: 100%;
        line-height: 1.5;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 18px 30px;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .section-header h2 .number {
        font-size: 1.1em;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Sections */
    .features,
    .services,
    .pricing,
    .reviews,
    .reservation,
    .access {
        padding: 60px 0;
    }
    
    /* Cards */
    .feature-card,
    .pricing-card,
    .review-card,
    .reservation-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .feature-card h3,
    .pricing-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .feature-card p,
    .pricing-card p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    /* Pricing Specific */
    .pricing-price {
        font-size: 1.8rem;
        margin: 15px 0;
    }
    
    .pricing-features {
        font-size: 0.9rem;
    }
    
    /* Service Flow */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Reviews */
    .review-card {
        padding: 20px;
    }
    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .review-author {
        font-size: 0.85rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 18px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 18px;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 18px;
    }
    
    /* Access & Contact */
    .info-item {
        padding: 15px;
    }
    
    .info-label {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer p,
    .footer a {
        font-size: 0.9rem;
    }
    
    /* Touch Optimization */
    .btn,
    .faq-question,
    .nav-menu a,
    .hamburger {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 20px;
        font-size: 0.8rem;
    }
}

/* AOS Animation Overrides */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s ease, transform 1s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1s ease, transform 1s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Touch Device Optimizations */
.touch-device .btn:hover,
.touch-device .feature-card:hover,
.touch-device .pricing-card:hover,
.touch-device .review-card:hover {
    transform: none;
}

.touch-device .btn:active,
.touch-device .feature-card:active,
.touch-device .pricing-card:active,
.touch-device .review-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.reduced-motion *,
.reduced-motion *::before,
.reduced-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Performance Optimizations */
.hero,
.parallax-layer {
    will-change: transform;
}

.btn,
.feature-card,
.pricing-card,
.review-card {
    will-change: transform;
}

/* Lazy Loading Images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* Additional Mobile Improvements */
@media (max-width: 480px) {
    /* Improve tap targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Optimize form elements */
    input,
    textarea,
    select {
        font-size: 16px; /* Prevent zoom on iOS */
        min-height: 44px;
    }
    
    /* Improve readability */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Optimize scrolling */
    .nav-menu {
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
} 