/* ============================================
   NAYLISH - OCEAN BLUE THEME
   Premium Nail Salon Website
   ============================================ */

:root {
    --primary: #0277bd;
    --primary-dark: #01579b;
    --primary-light: #4fc3f7;
    --secondary: #1e88e5;
    --accent: #00acc1;
    --light-blue: #e1f5fe;
    --bg-light: #f0f9ff;
    --white: #ffffff;
    --text-dark: #0a2540;
    --text-body: #455a64;
    --text-light: #78909c;
    --border: #e0e0e0;
    --shadow: 0 8px 30px rgba(2, 119, 189, 0.1);
    --shadow-lg: 0 20px 60px rgba(2, 119, 189, 0.15);
    --transition: all 0.35s ease;
    --gradient: linear-gradient(135deg, #0277bd 0%, #00acc1 100%);
    --gradient-2: linear-gradient(135deg, #01579b 0%, #1e88e5 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(2, 119, 189, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(2, 119, 189, 0.4); color: var(--white); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--text-dark); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 16px 38px; font-size: 16px; }

/* ===== Top Bar ===== */
.topbar { background: var(--primary-dark); color: #ffffff; padding: 10px 0; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.topbar-info { color: #ffffff; }
.topbar-info span { margin-right: 22px; color: #ffffff; display: inline-block; }
.topbar-info i { margin-right: 6px; color: var(--primary-light); }
.topbar-social a {
    color: var(--white); margin-left: 12px;
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
}
.topbar-social a:hover { background: var(--primary-light); border-color: var(--primary-light); }

/* ===== Header ===== */
.site-header {
    background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 6px 25px rgba(2, 119, 189, 0.15); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.site-logo {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
}
.site-logo .logo-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gradient);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
    box-shadow: 0 6px 14px rgba(2,119,189,0.3);
}
.site-logo .logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.site-logo .logo-text {
    font-size: 22px; font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3px;
}
.site-logo .logo-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}
.site-logo .logo-dot { color: var(--accent); font-size: 40px; }
.site-logo .logo-img {
    max-height: 55px;
    width: auto;
    display: block;
}
.header-spacer { height: 80px; }
.main-nav .nav-list { list-style: none; display: flex; gap: 5px; align-items: center; }
.main-nav .nav-list > li > a {
    display: block; padding: 10px 16px;
    color: var(--text-dark); font-weight: 500; font-size: 15px;
    position: relative;
}
.main-nav .nav-list > li > a:hover,
.main-nav .nav-list > li > a.active { color: var(--primary); }
.main-nav .nav-list > li > a.active::after {
    content: ''; position: absolute; bottom: 4px; left: 50%;
    transform: translateX(-50%); width: 20px; height: 2px;
    background: var(--gradient); border-radius: 2px;
}
.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: 100%; left: 0; min-width: 200px;
    background: var(--white); box-shadow: var(--shadow);
    border-radius: 8px; padding: 8px 0; list-style: none;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 20px; color: var(--text-body); font-size: 14px; }
.dropdown li a:hover { background: var(--bg-light); color: var(--primary); padding-left: 25px; }
.header-actions { display: flex; align-items: center; gap: 15px; }
.nav-toggle { display: none; background: transparent; border: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-close { display: none; position: absolute; top: 20px; right: 20px; background: transparent; border: none; font-size: 24px; color: var(--text-dark); cursor: pointer; }

/* ===== Hero Section ===== */
.hero {
    position: relative; padding: 100px 0 80px;
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 50%, #81d4fa 100%);
    overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(79,195,247,0.4) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -150px; left: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(2,119,189,0.2) 0%, transparent 70%); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-content .badge {
    display: inline-block; background: rgba(255,255,255,0.7); color: var(--primary);
    padding: 6px 18px; border-radius: 50px; font-size: 13px; font-weight: 500;
    margin-bottom: 20px; backdrop-filter: blur(10px);
}
.hero-content h1 { margin-bottom: 24px; color: var(--text-dark); }
.hero-content h1 span { color: var(--primary); font-style: italic; }
.hero-content p { font-size: 18px; margin-bottom: 32px; color: var(--text-body); }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; text-align: center; }
.hero-image .main-img {
    width: 100%; height: 500px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: var(--gradient);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image .main-img::after {
    content: '\f5d7'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: rgba(255,255,255,0.3); font-size: 250px;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.hero-image .main-img.has-image::after { display: none; }
.hero-shape { position: absolute; background: var(--white); border-radius: 20px; box-shadow: var(--shadow); padding: 20px; display: flex; align-items: center; gap: 12px; }
.hero-shape-1 { top: 50px; left: -20px; animation: float 3s ease-in-out infinite; }
.hero-shape-2 { bottom: 60px; right: -20px; animation: float 3s ease-in-out infinite 1.5s; }
.hero-shape i { font-size: 28px; color: var(--primary); }
.hero-shape strong { display: block; color: var(--text-dark); font-size: 14px; }
.hero-shape small { color: var(--text-light); font-size: 12px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* ===== Section Common ===== */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--bg-light); }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .subtitle {
    color: var(--primary); font-size: 14px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px;
    display: inline-block; position: relative; padding: 0 50px;
}
.section-head .subtitle::before, .section-head .subtitle::after { content: ''; position: absolute; top: 50%; width: 35px; height: 2px; background: var(--primary); border-radius: 2px; }
.section-head .subtitle::before { left: 0; }
.section-head .subtitle::after { right: 0; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { max-width: 650px; margin: 0 auto; color: var(--text-body); }

/* ===== About Section ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; height: 500px; border-radius: 20px; background: var(--gradient-2); box-shadow: var(--shadow-lg); overflow: hidden; }
.about-image::after { content: '\f0c0'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: rgba(255,255,255,0.15); font-size: 280px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.about-experience { position: absolute; bottom: -30px; right: -30px; width: 160px; height: 160px; background: var(--white); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); text-align: center; }
.about-experience .number { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: var(--primary); line-height: 1; }
.about-experience .text { font-size: 13px; color: var(--text-body); }
.about-content .subtitle { color: var(--primary); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; display: block; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }
.about-features { list-style: none; margin: 24px 0 32px; }
.about-features li { padding: 8px 0; color: var(--text-body); }
.about-features i { color: var(--primary); margin-right: 10px; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.stat-item { text-align: center; background: var(--white); padding: 30px 15px; border-radius: 15px; box-shadow: var(--shadow); transition: var(--transition); }
.stat-item:hover { transform: translateY(-5px); }
.stat-item i { font-size: 36px; color: var(--primary); margin-bottom: 12px; }
.stat-item .stat-number { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--text-dark); }
.stat-item p { color: var(--text-light); font-size: 14px; margin-top: 6px; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
    background: var(--white); padding: 40px 30px; border-radius: 20px;
    text-align: center; box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}
.service-card::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gradient);
    transition: transform 0.45s ease;
    z-index: 0;
    transform: translateY(101%);
    pointer-events: none;  /* CRITICAL: cho phép click xuyên qua overlay */
}
.service-card:hover::before { transform: translateY(0); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover .service-icon,
.service-card:hover h4,
.service-card:hover p,
.service-card:hover .service-price,
.service-card:hover .service-link { color: var(--white); }
.service-card:hover .service-icon { background: rgba(255,255,255,0.2); }
.service-card:hover .btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.service-card:hover .btn-outline:hover { background: var(--white); color: var(--primary); }
.service-icon {
    width: 90px; height: 90px;
    background: var(--light-blue); color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; margin: 0 auto 24px;
    transition: var(--transition);
}
.service-card h4 { margin-bottom: 14px; transition: var(--transition); }
.service-card p { color: var(--text-body); margin-bottom: 20px; transition: var(--transition); }
.service-price {
    display: inline-block; font-size: 24px; font-weight: 600;
    color: var(--primary); font-family: 'Playfair Display', serif;
    margin-bottom: 20px; transition: var(--transition);
}
.service-link { color: var(--primary); font-weight: 500; transition: var(--transition); }
.service-link i { margin-left: 6px; transition: var(--transition); }
.service-link:hover i { transform: translateX(5px); }
.service-card .btn { position: relative; z-index: 2; }

/* ===== Contact Card (booking, contact pages) ===== */
.contact-card {
    background: #fff;
    padding: 28px 25px;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: var(--shadow);
}
.contact-card h4 {
    color: var(--primary);
    margin-bottom: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px dashed var(--border);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .ci {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: var(--light-blue);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.contact-list a {
    color: var(--text-dark);
    font-weight: 500;
    word-break: break-word;
}
.contact-list a:hover { color: var(--primary); }
.contact-list span { word-break: break-word; }

/* ===== Price List ===== */
.price-list { background: var(--white); border-radius: 20px; padding: 50px; box-shadow: var(--shadow); max-width: 900px; margin: 0 auto; }
.price-item { display: flex; align-items: center; padding: 24px 0; border-bottom: 1px dashed var(--border); }
.price-item:last-child { border-bottom: none; }
.price-item .price-icon { width: 60px; height: 60px; background: var(--light-blue); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-right: 20px; flex-shrink: 0; }
.price-item .price-info { flex: 1; }
.price-item .price-info h4 { font-size: 18px; margin-bottom: 4px; }
.price-item .price-info p { color: var(--text-light); font-size: 14px; margin: 0; }
.price-item .price-dots { flex: 1; border-bottom: 2px dotted var(--border); margin: 0 20px; }
.price-item .price-cost { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--primary); flex-shrink: 0; }

/* ===== Testimonials ===== */
.testimonial-card { background: var(--white); padding: 40px 30px; border-radius: 20px; box-shadow: var(--shadow); text-align: center; margin: 20px; }
.testimonial-quote { font-size: 40px; color: var(--primary-light); margin-bottom: 15px; }
.testimonial-card p { font-style: italic; color: var(--text-body); margin-bottom: 24px; }
.testimonial-rating { color: #ffb300; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 15px; }
.testimonial-author .author-img { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 24px; }
.testimonial-author h5 { margin: 0; font-size: 16px; font-family: 'Poppins', sans-serif; }
.testimonial-author small { color: var(--text-light); }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: var(--gradient);
}
.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    z-index: 0;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: rgba(255,255,255,0.35);
    font-size: 70px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    z-index: 0;
}
.gallery-item.has-image::after { display: none; }
.gallery-item .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(1,87,155,0.92) 0%, rgba(2,119,189,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 22px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item h5 {
    color: var(--white);
    margin: 0 0 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
}
.gallery-cat {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    color: #fff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}

/* ===== Blog ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.blog-image { height: 240px; background: var(--gradient); position: relative; overflow: hidden; }
.blog-image::after { content: '\f15c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: rgba(255,255,255,0.3); font-size: 80px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.blog-category { position: absolute; top: 15px; left: 15px; background: var(--white); color: var(--primary); padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 500; z-index: 1; }
.blog-content { padding: 30px 25px; }
.blog-meta { display: flex; gap: 18px; color: var(--text-light); font-size: 13px; margin-bottom: 12px; }
.blog-meta i { color: var(--primary); margin-right: 4px; }
.blog-content h4 { margin-bottom: 14px; font-size: 1.2rem; }
.blog-content h4 a { color: var(--text-dark); }
.blog-content h4 a:hover { color: var(--primary); }
.blog-content p { color: var(--text-body); margin-bottom: 18px; }
.read-more { font-weight: 500; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover i { transform: translateX(5px); }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); text-align: center; }
.team-card:hover { transform: translateY(-10px); }
.team-image { height: 280px; background: var(--gradient); position: relative; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 80px; }
.team-image i { font-size: 100px; }
.team-info { padding: 25px; }
.team-info h4 { margin-bottom: 6px; font-size: 1.15rem; }
.team-info .position { color: var(--primary); font-size: 14px; margin-bottom: 14px; display: block; }
.team-social a { display: inline-flex; width: 34px; height: 34px; background: var(--light-blue); color: var(--primary); align-items: center; justify-content: center; border-radius: 50%; margin: 0 3px; font-size: 13px; }
.team-social a:hover { background: var(--primary); color: var(--white); }

/* ===== Booking ===== */
.booking-section { background: var(--gradient-2); color: var(--white); padding: 80px 0; position: relative; overflow: hidden; }
.booking-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(79,195,247,0.2), transparent 50%), radial-gradient(circle at 80% 70%, rgba(0,172,193,0.2), transparent 50%); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; position: relative; }
.booking-grid h2 { color: var(--white); margin-bottom: 20px; }
.booking-grid p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.booking-form { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow-lg); }
.booking-form h3 { color: var(--text-dark); margin-bottom: 24px; }

/* ===== Forms ===== */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-control { width: 100%; padding: 14px 20px; border: 2px solid var(--border); border-radius: 50px; font-family: inherit; font-size: 14px; color: var(--text-dark); transition: var(--transition); }
textarea.form-control { border-radius: 20px; resize: vertical; min-height: 120px; }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(2, 119, 189, 0.1); }
.form-message { padding: 12px 18px; border-radius: 10px; margin-top: 12px; display: none; }
.form-message.show { display: block; }
.form-message.success { background: #d4edda; color: #155724; }
.form-message.error { background: #f8d7da; color: #721c24; }

/* ===== Page Banner ===== */
.page-banner { background: var(--gradient-2); padding: 100px 0 60px; color: var(--white); text-align: center; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(79,195,247,0.3) 0%, transparent 70%); border-radius: 50%; }
.page-banner h1 { color: var(--white); margin-bottom: 10px; position: relative; }
.breadcrumb { list-style: none; display: flex; justify-content: center; gap: 10px; position: relative; }
.breadcrumb li { color: rgba(255,255,255,0.8); }
.breadcrumb li a { color: var(--white); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 10px; opacity: 0.6; }

/* ===== FAQ ===== */
.faq-item { background: var(--white); border-radius: 12px; box-shadow: var(--shadow); margin-bottom: 15px; overflow: hidden; }
.faq-question { padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; color: var(--text-dark); transition: var(--transition); }
.faq-question:hover { background: var(--bg-light); }
.faq-question i { transition: var(--transition); color: var(--primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 25px 25px; color: var(--text-body); }
.faq-item.active .faq-answer { max-height: 400px; }

/* ===== Footer ===== */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.85); position: relative; padding-top: 60px; }
.footer-wave { position: absolute; top: -1px; left: 0; right: 0; height: 80px; transform: translateY(-100%); line-height: 0; }
.footer-wave svg { width: 100%; height: 100%; }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 40px; }
.footer-logo { color: var(--white); font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 18px; }
.footer-logo .logo-dot { color: var(--primary-light); }
.footer-col h4 { color: var(--white); margin-bottom: 22px; font-size: 1.15rem; position: relative; padding-bottom: 10px; font-family: 'Poppins', sans-serif; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary-light); }
.footer-col p { font-size: 14px; line-height: 1.8; }
.footer-links, .footer-contact { list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 10px; font-size: 14px; }
.footer-links a { color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--primary-light); transform: translateX(5px); }
.footer-links i { font-size: 11px; color: var(--primary-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.9); }
.footer-contact li span, .footer-contact li a { color: rgba(255,255,255,0.9); }
.footer-contact li a:hover { color: var(--primary-light); }
.footer-contact i { color: var(--primary-light); margin-top: 5px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--primary-light); }
.newsletter-form { display: flex; background: rgba(255,255,255,0.1); border-radius: 50px; padding: 4px; margin-top: 12px; }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 10px 18px; color: var(--white); outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form button { background: var(--primary-light); border: none; color: var(--white); width: 42px; height: 42px; border-radius: 50%; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; text-align: center; font-size: 14px; }

/* ===== Scroll Top ===== */
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--gradient); color: var(--white); border: none; border-radius: 50%; cursor: pointer; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; }
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===== Post Content ===== */
.post-content { max-width: 800px; margin: 0 auto; }
.post-content img { border-radius: 15px; margin: 20px 0; }
.post-meta-large { display: flex; gap: 20px; margin: 24px 0; color: var(--text-light); font-size: 14px; flex-wrap: wrap; }
.post-meta-large i { color: var(--primary); margin-right: 5px; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .booking-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .blog-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .d-none-mobile { display: none !important; }
    .section { padding: 60px 0; }
    .nav-toggle { display: flex; }
    .nav-close { display: block; }
    .main-nav {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--white); padding: 60px 30px 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s ease; z-index: 1001;
    }
    .main-nav.open { right: 0; }
    .main-nav .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav .nav-list > li { border-bottom: 1px solid var(--border); }
    .main-nav .nav-list > li > a { padding: 14px 0; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 20px; display: none; }
    .has-dropdown.open .dropdown { display: block; }
    .services-grid, .blog-grid, .gallery-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .price-list { padding: 30px 20px; }
    .price-item { flex-wrap: wrap; }
    .price-item .price-dots { display: none; }
    .topbar { font-size: 12px; }
    .topbar-info span { margin-right: 12px; }
    .hero { padding: 60px 0 40px; }
    .hero-image .main-img { height: 320px; }
    .about-image { height: 380px; }
    .booking-form { padding: 25px; }
}

@media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { justify-content: center; }
}
