/* ============================================
   Kiyoshi Omakase — CSS Design System
   Palette: Deep Navy · Soft Gold · Warm Neutrals
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --navy:        #0f1a2e;
    --navy-light:  #1a2a45;
    --navy-dark:   #0a1220;
    --gold:        #c9a96e;
    --gold-light:  #dfc08a;
    --gold-dark:   #a8874e;
    --cream:       #f5f0e8;
    --warm-white:  #faf8f4;
    --charcoal:    #2c2c2c;
    --text:        #333333;
    --text-light:  #6b6b6b;
    --white:       #ffffff;
    --black:       #000000;
    --overlay:     rgba(15, 26, 46, 0.7);

    --ff-heading:  'Cormorant Garamond', 'Georgia', serif;
    --ff-body:     'Inter', 'Helvetica Neue', Arial, sans-serif;
    --ff-accent:   'Noto Serif JP', serif;

    --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
    --radius:      4px;
    --max-width:   1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold);
}

ul { list-style: none; }

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.section-label {
    display: inline-block;
    font-family: var(--ff-accent);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-desc {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    text-align: center;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201,169,110,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ---------- Header / Navbar ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(15, 26, 46, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--white);
    transition: opacity var(--transition);
}

.logo a:hover {
    opacity: 0.85;
    color: var(--white);
}

.logo img {
    height: 42px;
    width: auto;
}

.logo-text {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 0.3rem 0;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

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

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--navy-dark) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1.2s ease;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,18,32,0.45) 0%,
        rgba(10,18,32,0.6) 50%,
        rgba(10,18,32,0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-label {
    font-family: var(--ff-accent);
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.hero-scroll .arrow {
    width: 20px;
    height: 20px;
    border-right: 1.5px solid rgba(255,255,255,0.5);
    border-bottom: 1.5px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
}

/* ---------- Page Hero (Interior Pages) ---------- */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy-dark);
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,18,32,0.5) 0%,
        rgba(10,18,32,0.75) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-content .section-label {
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 0.8rem;
}

.page-hero-content p {
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---------- Sections ---------- */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255,255,255,0.8);
}

.section-cream {
    background: var(--cream);
}

.section-center {
    text-align: center;
}

/* ---------- Experience Cards ---------- */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.experience-card .card-img {
    height: 240px;
    overflow: hidden;
}

.experience-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-card:hover .card-img img {
    transform: scale(1.05);
}

.experience-card .card-body {
    padding: 1.8rem;
}

.experience-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
}

.experience-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ---------- Two-Column Layout ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.two-col-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.two-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two-col-text h2 {
    margin-bottom: 1rem;
}

.two-col-text p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* ---------- Menu / Course Cards ---------- */
.menu-course {
    margin-bottom: 4rem;
}

.menu-course h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.menu-course .course-subtitle {
    color: var(--gold);
    font-family: var(--ff-accent);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.menu-item:hover {
    box-shadow: var(--shadow-md);
}

.menu-item-img {
    width: 90px;
    height: 90px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-info h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: var(--navy);
}

.menu-item-info p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ---------- Pricing Tiers ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    border-top: 3px solid transparent;
}

.pricing-card.featured {
    border-top-color: var(--gold);
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-family: var(--ff-heading);
    font-size: 2.4rem;
    color: var(--gold);
    margin: 1rem 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card ul {
    text-align: left;
    margin: 1.5rem 0;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.92rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,26,46,0);
    transition: background var(--transition);
}

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

.gallery-item:hover::after {
    background: rgba(15,26,46,0.3);
}

/* Gallery Filter Tabs */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.5rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1.5px solid var(--navy-light);
    border-radius: 30px;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ---------- Lightbox ---------- */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition);
    padding: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--ff-heading);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1.2rem;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.testimonial-card .reviewer {
    font-weight: 600;
    color: var(--navy);
    font-style: normal;
    font-size: 0.9rem;
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* ---------- Contact / Form ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-detail .icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--gold-dark);
}

.contact-detail .info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-detail .info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-detail .info a {
    color: var(--text-light);
}

.contact-detail .info a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: var(--radius);
    font-family: var(--ff-body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--warm-white);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

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

/* ---------- Google Map ---------- */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 2.5rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-banner .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cta-banner .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,26,46,0.8);
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ---------- Private Events Feature Grid ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--gold-dark);
}

.section-dark .feature-card .icon {
    background: var(--navy-light);
}

.feature-card h4 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

.section-dark .feature-card p {
    color: rgba(255,255,255,0.7);
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
    cursor: pointer;
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question .toggle {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 1.3rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- Footer ---------- */
footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 3.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    font-size: 0.92rem;
}

.footer-section a:hover {
    color: var(--gold);
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-partner {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-partner a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-partner a:hover {
    color: var(--white);
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Success Popup ---------- */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-box {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    animation: fadeUp 0.4s ease;
}

.popup-box .check {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--white);
}

.popup-box h3 {
    margin-bottom: 0.8rem;
}

.popup-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right var(--transition);
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
    }

    /* Sections */
    .section {
        padding: 3.5rem 0;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-col.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .hero {
        min-height: 500px;
    }

    .page-hero {
        min-height: 280px;
        height: 40vh;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-container {
        height: 300px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html { font-size: 15px; }

    .container { width: 92%; padding: 0 0.5rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
