/* ============================================
   YOSHOKU YAKINIKU - MAIN STYLESHEET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: #c92a2a;
    border-radius: 5px;
}

/* ============================================
   NAVIGATION - No Blur, No Border
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease;
    padding: 20px 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

.navbar.scrolled {
    background-color: #000000;
    padding: 10px 0;
}

.nav-container {
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 1.3rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c92a2a;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #0f1011;
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    padding: 12px 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    .nav-links {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
    }
    .logo-img {
        height: 55px;
    }
    .navbar.scrolled .logo-img {
        height: 45px;
    }
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
}

.slide-badge {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    padding: 8px 28px;
    background: #c92a2a;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.slide h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin: 1rem 0;
    line-height: 1.2;
}

.slide p {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 2rem;
}

.btn-slide {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #c92a2a;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-slide:hover {
    background-color: #a01e1e;
    transform: translateY(-3px);
}

/* Slider Dots & Arrows */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #c92a2a;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0,0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    font-size: 1.5rem;
}

.slider-arrow:hover {
    background-color: #c92a2a;
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

@media (max-width: 768px) {
    .slide h1 { font-size: 2rem; }
    .slide p { font-size: 0.9rem; }
    .slider-arrow { width: 35px; height: 35px; font-size: 1rem; }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 5rem 5%;
    background: #0f0f0f;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 3rem;
}

.section-title span {
    color: #c92a2a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: #c92a2a;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.6;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-page {
    padding: 10rem 5% 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.about-hero .subtitle {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    display: inline-block;
    padding: 8px 28px;
    background: #c92a2a;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-hero h1 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
}

.about-hero p {
    font-size: 1.3rem;
    color: #ddd;
    max-width: 700px;
    margin: 1rem auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-text p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.about-image {
    background: url('../media/about-img.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    min-height: 400px;
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.values-list i {
    color: #c92a2a;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-page { padding-top: 12rem; }
    .about-hero h1 { font-size: 2.5rem; }
}

/* ============================================
   VIDEO BACKGROUND FOR ABOUT PAGE
   ============================================ */

.video-background-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.about-page-video {
    padding: 10rem 5% 5rem;
    max-width: 1500px;
    margin: 0 auto;
    background: transparent;
}

.video-content .about-grid {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(2px);
}

@media (max-width: 768px) {
    .about-page-video { padding: 8rem 5% 3rem; }
    .video-content .about-grid { padding: 1.5rem; }
}

/* ============================================
   MENU SLIDER PAGE
   ============================================ */

.menu-slider-section {
    padding: 10rem 5% 5rem !important;
    min-height: 100vh;
}

.menu-slider-section .about-hero .subtitle {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    display: inline-block;
    padding: 8px 28px;
    background: #c92a2a;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.menu-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: transparent;
    padding: 60px;
}

.menu-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

.menu-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.menu-slider:active { cursor: grabbing; }

.menu-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.menu-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 80vh;
}

.menu-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    font-size: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.menu-slider-arrow:hover {
    background: #c92a2a;
    transform: translateY(-50%) scale(1.1);
}

.menu-slider-arrow.prev { left: 15px; }
.menu-slider-arrow.next { right: 15px; }

.menu-slider-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.menu-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.menu-dot.active {
    background: #c92a2a;
    width: 30px;
    border-radius: 10px;
}

.menu-dot:hover { background: #c92a2a; }

.menu-counter {
    text-align: center;
    margin-top: 20px;
    color: #aaa;
    font-size: 1.3rem;
    font-weight: 500;
}

/* Zoom Modal */
.menu-zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.menu-zoom-modal.active { display: flex; }

.zoom-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2001;
}

.zoom-close:hover { color: #c92a2a; }

.menu-slide {
    position: relative;
    cursor: pointer;
}

.menu-slide::after {
    content: '🔍 Click to zoom';
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.menu-slide:hover::after { opacity: 1; }

@media (max-width: 768px) {
    .menu-slider-section { padding: 6rem 5% 3rem; }
    .menu-slider-container { padding: 20px; }
    .menu-slider-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
    .menu-slide img { max-height: 55vh; }
    .menu-slide::after { content: '👆 Tap to zoom'; font-size: 10px; bottom: 10px; right: 10px; }
}

/* ============================================
   MENU PAGE BACKGROUND
   ============================================ */

body.menu-body {
    background-image: url('../media/background/menu-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.menu-overlay {
    background: rgba(0, 0, 0, 0.55);
    min-height: 100vh;
}

.menu-overlay .menu-slider-section {
    background: transparent;
    padding: 8rem 5% 5rem;
}

/* ============================================
   LOCATIONS PAGE
   ============================================ */

body.locations-body {
    background-image: url('../media/background/location-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.locations-overlay {
    background: rgba(0, 0, 0, 0.75);
    min-height: 100vh;
}

.locations-overlay .about-hero .subtitle {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    display: inline-block;
    padding: 8px 28px;
    background: #c92a2a;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.branch-single {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    transition: transform 0.3s;
}

.branch-single:hover { transform: translateY(-5px); }

.branch-image {
    flex: 1;
    min-width: 300px;
    min-height: 300px;
    position: relative;
}

.branch-image iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
    display: block;
}

.branch-info {
    flex: 1;
    padding: 2rem;
}

.branch-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #c92a2a;
}

.branch-subtitle {
    color: #aaa;
    margin-bottom: 1.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .branch-single {
        flex-direction: column;
    }
    .branch-image iframe {
        height: 250px;
        min-height: 250px;
    }
}

.info-item {
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    width: 25px;
    color: #c92a2a;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.hours-list { flex: 1; }

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: center;
}

.hours-time { color: #c92a2a; }

.btn-location {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background-color: #c92a2a;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.btn-location:hover { background-color: #a01e1e; }

.map-section {
    padding: 5rem 5%;
    background: #0f0f0f;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .branch-single { flex-direction: column; }
    .branch-image { height: 250px; }
}

/* ============================================
   BLOG PAGE
   ============================================ */

body.blog-body {
    background-image: url('../media/background/blog-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.blog-overlay {
    background: rgba(0, 0, 0, 0.5);
    min-height: 100vh;
}

.blog-page {
    padding: 10rem 5% 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header { text-align: center; margin-bottom: 3rem; }

.blog-header .subtitle {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    display: inline-block;
    padding: 8px 28px;
    background: #c92a2a;
    border-radius: 50px;
    font-weight: 600;
}

.blog-header h1 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-top: 0.5rem;
}

.blog-header p {
    font-size: 1.3rem;
    color: #ddd;
    max-width: 600px;
    margin: 1rem auto;
    line-height: 1.6;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.blog-card.card-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.blog-card:nth-child(1).card-visible { transition-delay: 0.1s; }
.blog-card:nth-child(2).card-visible { transition-delay: 0.3s; }
.blog-card:nth-child(3).card-visible { transition-delay: 0.5s; }

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.blog-media {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #0a0a0a;
}

.blog-media img,
.blog-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content { padding: 1.5rem; }
.blog-preview {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-date {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.btn-read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #c92a2a;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-read-more:hover { background: #a01e1e; }

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .blog-page { padding: 8rem 5% 3rem; }
    .blog-header h1 { font-size: 2.5rem; }
    .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BLOG MODAL POPUP - VERTICAL LAYOUT (FIXED SIZE)
   ============================================ */

.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    overflow-y: auto;
}

.blog-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 800px;
    width: 90%;
    background: #1a1a1a;
    border-radius: 20px;
    position: relative;
    margin: 50px auto;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: sticky;
    top: 15px;
    right: 20px;
    float: right;
    font-size: 35px;
    color: white;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    z-index: 10;
    transition: all 0.3s;
}

.modal-close:hover {
    color: #c92a2a;
    transform: scale(1.1);
}

/* Vertical Layout - Fixed Video Size */
.blog-media-vertical {
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.blog-media-vertical .video-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

/* Fixed height for video container */
.blog-media-vertical .video-wrapper {
    aspect-ratio: 9 / 16;
    height: auto;
}

.blog-media-vertical .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.blog-content-vertical {
    padding: 2rem;
    overflow-y: auto;
    max-height: 50vh;
}

.blog-content-vertical h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #c92a2a;
    font-family: 'Playfair Display', serif;
}

.blog-content-vertical .full-content {
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

.blog-content-vertical .full-content p {
    margin-bottom: 1rem;
}

.blog-content-vertical .blog-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.blog-content-vertical .blog-hashtags span {
    background: rgba(201,42,42,0.15);
    color: #c92a2a;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.blog-content-vertical .blog-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.blog-content-vertical .blog-contact a {
    color: #c92a2a;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.blog-content-vertical .blog-contact a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 30px auto;
        max-height: 85vh;
    }
    
    .blog-media-vertical {
        padding: 15px;
    }
    
    .blog-media-vertical .video-wrapper {
        max-width: 280px;
    }
    
    .blog-content-vertical {
        padding: 1.5rem;
        max-height: none;
    }
    
    .blog-content-vertical h2 {
        font-size: 1.3rem;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
    padding: 5rem 5%;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.cta .btn {
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #c92a2a;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s;
}

.btn:hover {
    background-color: #a01e1e;
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 3rem 5%;
    background: #050505;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.social-links a:hover { color: #c92a2a; }

/* ============================================
   CONTACT & SOCIAL SECTION
   ============================================ */

.contact-section {
    padding: 5rem 5%;
    background: #0f0f0f;
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.contact-section h2 span {
    color: #c92a2a;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: #c92a2a;
}

.contact-card i {
    font-size: 3rem;
    color: #c92a2a;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.contact-card:hover i {
    color: #ffffff;
}

.contact-card span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-card small {
    font-size: 1.2rem;
    color: #aaa;
    transition: color 0.3s;
}

.contact-card:hover small {
    color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON - PREMIUM
   ============================================ */

.whatsapp-float-premium {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Inter', sans-serif;
}

/* Main Button */
.whatsapp-main {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 60px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-main i {
    font-size: 24px;
    color: white;
}

.whatsapp-main span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Menu Options */
.whatsapp-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-menu.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Item */
.whatsapp-item {
    background: white;
    color: #333;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-width: 220px;
}

.whatsapp-item:hover {
    transform: translateX(-5px);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.whatsapp-item .item-icon {
    width: 36px;
    height: 36px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-item .item-icon i {
    font-size: 18px;
    color: white;
}

.whatsapp-item:hover .item-icon {
    background: white;
}

.whatsapp-item:hover .item-icon i {
    color: #25D366;
}

.whatsapp-item .item-text {
    display: flex;
    flex-direction: column;
}

.whatsapp-item .item-text strong {
    font-size: 14px;
    font-weight: 700;
}

.whatsapp-item .item-text small {
    font-size: 11px;
    opacity: 0.8;
}

/* Birthday item - different icon color */
.whatsapp-item.birthday .item-icon {
    background: #128C7E;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float-premium {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-main {
        padding: 10px 20px;
    }
    
    .whatsapp-main span {
        display: none;
    }
    
    .whatsapp-main i {
        font-size: 22px;
    }
    
    .whatsapp-item {
        min-width: 180px;
        padding: 10px 16px;
    }
    
    .whatsapp-item .item-icon {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-item .item-icon i {
        font-size: 14px;
    }
    
    .whatsapp-item .item-text strong {
        font-size: 12px;
    }
    
    .whatsapp-item .item-text small {
        font-size: 9px;
    }
}

/* ============================================
   BOOKING MODAL POPUP - ENHANCED
   ============================================ */

/* Modal Background */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    display: flex;
}

/* Modal Content */
.booking-modal-content {
    background: #1a1a1a;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.booking-modal-close:hover {
    color: #c92a2a;
}

.booking-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #c92a2a;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #aaa;
    font-weight: 500;
}

/* Date Picker Styling */
input[type="date"] {
    width: 100%;
    padding: 14px;
    background: #2a2a2a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    font-size: 14px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

input[type="date"]:focus {
    outline: none;
    border-color: #c92a2a;
}

/* Time Selector - Grid Style */
.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 5px;
}

.time-slot {
    background: #2a2a2a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    color: #ddd;
}

.time-slot:hover {
    background: #c92a2a;
    border-color: #c92a2a;
    color: white;
    transform: scale(1.02);
}

.time-slot.selected {
    background: #c92a2a;
    border-color: #c92a2a;
    color: white;
}

/* Hidden input for time */
#bookingTimeHidden {
    display: none;
}

/* Other inputs */
.booking-modal input,
.booking-modal select,
.booking-modal textarea {
    width: 100%;
    padding: 14px;
    background: #2a2a2a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.booking-modal input:focus,
.booking-modal select:focus,
.booking-modal textarea:focus {
    outline: none;
    border-color: #c92a2a;
}

.booking-modal select option {
    background: #1a1a1a;
}

.booking-modal textarea {
    resize: vertical;
}

/* Submit Button */
.booking-modal button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.booking-modal button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 500px) {
    .time-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .booking-modal-content {
        padding: 1.5rem;
    }
}

/* ============================================
   TIME PICKER - LIST STYLE (WORKING HOURS)
   ============================================ */

/* Time Picker Modal */
.timepicker-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.timepicker-modal.active {
    display: flex;
}

.timepicker-content {
    background: #1a1a1a;
    border-radius: 30px;
    max-width: 320px;
    width: 90%;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    animation: timepickerSlideIn 0.3s ease;
}

@keyframes timepickerSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.timepicker-title {
    font-size: 18px;
    font-weight: 600;
    color: #c92a2a;
    margin-bottom: 15px;
}

.timepicker-list {
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 20px;
    border-radius: 15px;
}

.timepicker-list::-webkit-scrollbar {
    width: 5px;
}

.timepicker-list::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 10px;
}

.timepicker-list::-webkit-scrollbar-thumb {
    background: #c92a2a;
    border-radius: 10px;
}

.time-option {
    padding: 14px 20px;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 500;
}

.time-option:hover {
    background: #2a2a2a;
    color: #c92a2a;
}

.time-option.selected {
    background: #c92a2a;
    color: white;
}

.timepicker-actions {
    display: flex;
    gap: 15px;
}

.timepicker-actions button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel {
    background: #2a2a2a;
    color: white;
}

.btn-cancel:hover {
    background: #444;
}

.btn-ok {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.btn-ok:hover {
    transform: translateY(-2px);
}

/* Warning Toast */
.time-warning {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #c92a2a;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10002;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.time-warning.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 450px) {
    .time-warning {
        font-size: 12px;
        white-space: normal;
        text-align: center;
        max-width: 80%;
        padding: 10px 20px;
    }
}

/* ============================================
   CUSTOM DATE PICKER - POPUP CALENDAR
   ============================================ */

/* Calendar Modal */
.calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10002;
    align-items: center;
    justify-content: center;
}

.calendar-modal.active {
    display: flex;
}

.calendar-content {
    background: #1a1a1a;
    border-radius: 30px;
    max-width: 400px;
    width: 90%;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    animation: calendarSlideIn 0.3s ease;
}

@keyframes calendarSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.calendar-month-year {
    font-size: 20px;
    font-weight: 700;
    color: #c92a2a;
}

.calendar-nav {
    display: flex;
    gap: 15px;
}

.calendar-nav button {
    background: #2a2a2a;
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.calendar-nav button:hover {
    background: #c92a2a;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 10px;
}

.calendar-weekday {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #c92a2a;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 20px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    background: #2a2a2a;
}

.calendar-day:hover {
    background: #c92a2a;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: #c92a2a;
    color: white;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background: #2a2a2a;
    transform: none;
}

.calendar-day.other-month {
    opacity: 0.5;
}

.calendar-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.calendar-actions button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-cancel {
    background: #2a2a2a;
    color: white;
}

.calendar-cancel:hover {
    background: #444;
}

.calendar-ok {
    background: #c92a2a;
    color: white;
}

.calendar-ok:hover {
    background: #a01e1e;
}

/* ============================================
   WHATSAPP FLOATING ICON - WITH ANIMATION
   ============================================ */

/* Pulse Animation for Main Button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0.2);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

/* Ring Animation */
@keyframes ring {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(10deg);
    }
    20% {
        transform: rotate(-10deg);
    }
    30% {
        transform: rotate(5deg);
    }
    40% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Bounce Animation for Menu Items */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateX(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Slide In Animation for Menu */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* WhatsApp Main Button */
.whatsapp-float-premium {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Inter', sans-serif;
}

.whatsapp-main {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 60px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    position: relative;
}

/* Notification Badge */
.whatsapp-main::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background-color: #ff4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.whatsapp-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-main:hover i {
    animation: ring 0.5s ease;
}

.whatsapp-main i {
    font-size: 24px;
    color: white;
    transition: all 0.3s;
}

.whatsapp-main span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Menu Options */
.whatsapp-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-menu.active {
    display: flex;
    animation: slideInRight 0.3s ease;
}

.whatsapp-item {
    background: white;
    color: #333;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-width: 220px;
    opacity: 0;
    animation: bounceIn 0.4s ease forwards;
}

.whatsapp-item:nth-child(1) {
    animation-delay: 0.05s;
}

.whatsapp-item:nth-child(2) {
    animation-delay: 0.1s;
}

.whatsapp-item:hover {
    transform: translateX(-5px);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.whatsapp-item .item-icon {
    width: 36px;
    height: 36px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-item .item-icon i {
    font-size: 18px;
    color: white;
}

.whatsapp-item:hover .item-icon {
    background: white;
}

.whatsapp-item:hover .item-icon i {
    color: #25D366;
}

.whatsapp-item .item-text {
    display: flex;
    flex-direction: column;
}

.whatsapp-item .item-text strong {
    font-size: 14px;
    font-weight: 700;
}

.whatsapp-item .item-text small {
    font-size: 11px;
    opacity: 0.8;
}

.whatsapp-item.birthday .item-icon {
    background: #128C7E;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float-premium {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-main {
        padding: 10px 20px;
    }
    
    .whatsapp-main span {
        display: none;
    }
    
    .whatsapp-main i {
        font-size: 22px;
    }
    
    .whatsapp-item {
        min-width: 180px;
        padding: 10px 16px;
    }
    
    .whatsapp-item .item-icon {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-item .item-icon i {
        font-size: 14px;
    }
    
    .whatsapp-item .item-text strong {
        font-size: 12px;
    }
    
    .whatsapp-item .item-text small {
        font-size: 9px;
    }
}

/* Optional: Floating animation for the whole container */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.whatsapp-float-premium {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
   BRANCH SOCIAL LINKS
   ============================================ */

.branch-social {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.branch-social h4 {
    font-size: 1rem;
    color: #c92a2a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.branch-social-links {
    display: flex;
    gap: 1rem;
}

.branch-social-links .social-icon {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #ffffff;
    font-size: 1.2rem;
}

.branch-social-links .social-icon:hover {
    background: #c92a2a;
    transform: translateY(-3px);
}