/* ============================================================
   Chef Baldo — Custom Styles
   Inspired by Pranzo Theme Design Language
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---------- ROOT VARIABLES ---------- */
:root {
    --accent: #C9A84C;
    --accent-hover: #A8882A;
    --accent-light: rgba(201, 168, 76, 0.1);
    --dark: #2D4443;
    --dark-2: #2a3737;
    --text: #2D4443;
    --text-second: #596a68;
    --light-bg: #f8f6f3;
    --border: #f0f2f3;
    --white: #ffffff;
    --font-heading: 'Marcellus', serif;
    --font-body: 'Manrope', sans-serif;
    --radius: 8px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

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

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

/* ---------- SECTION COMMON ---------- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--light-bg);
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-label.light {
    color: var(--accent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title.light {
    color: var(--white);
}

.section-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-second);
}

.section-text.light {
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- NAVBAR ---------- */
.navbar {
    padding: 16px 0;
    transition: background var(--transition), padding var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: var(--text) !important;
}

.navbar.scrolled .navbar-toggler-icon {
    filter: brightness(0);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white) !important;
}

.navbar-brand-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    font-weight: 700;
}

.navbar-brand-text .brand-sub {
    font-size: 9px;
    font-family: var(--font-body);
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: -1px;
    text-align: left;
    width: 100%;
}

.navbar.scrolled .navbar-brand-text .brand-sub {
    color: var(--accent);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 8px 0 !important;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

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

.navbar.scrolled .nav-link {
    color: var(--text) !important;
}

/* ---------- BUTTONS ---------- */
.btn-accent {
    font-family: var(--font-heading);
    font-weight: 600;
    background: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
    padding: 14px 32px;
    border-radius: 0;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent:hover::before {
    left: 125%;
}

.btn-outline-accent {
    font-family: var(--font-heading);
    font-weight: 600;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 14px 32px;
    border-radius: 0;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}

.btn-outline-accent:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a2a2a 0%, #2D4443 25%, #1a2a2a 50%, #2D4443 75%, #1a2a2a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
    overflow: hidden;
    padding: 120px 0 80px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Gold ambient sweep overlays */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 55%);
    animation: goldSweep 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    animation: goldSweep2 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes goldSweep {
    0%, 100% { transform: scale(1) translate(0, 0); }
    33% { transform: scale(1.08) translate(2%, 2%); }
    66% { transform: scale(0.95) translate(-2%, -1%); }
}

@keyframes goldSweep2 {
    0%, 100% { transform: scale(1) translate(0, 0); }
    33% { transform: scale(0.92) translate(-3%, 2%); }
    66% { transform: scale(1.05) translate(2%, -3%); }
}

/* ---------- HERO FLOATING ICONS ---------- */
.hero-float-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.float-icon {
    position: absolute;
    font-size: 28px;
    color: rgba(201, 168, 76, 0.12);
    animation: floatAround 20s ease-in-out infinite;
}

.float-icon-1 { top: 12%; left: 8%; animation-delay: 0s; font-size: 32px; }
.float-icon-2 { top: 20%; right: 12%; animation-delay: -3s; font-size: 26px; }
.float-icon-3 { bottom: 25%; left: 5%; animation-delay: -6s; font-size: 36px; }
.float-icon-4 { bottom: 15%; right: 8%; animation-delay: -9s; font-size: 24px; }
.float-icon-5 { top: 35%; left: 50%; animation-delay: -2s; font-size: 22px; }
.float-icon-6 { top: 60%; right: 20%; animation-delay: -5s; font-size: 30px; }
.float-icon-7 { bottom: 40%; left: 18%; animation-delay: -8s; font-size: 28px; }
.float-icon-8 { top: 8%; right: 30%; animation-delay: -11s; font-size: 20px; }

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.1;
    }
    20% {
        transform: translateY(-28px) rotate(6deg) scale(1.15);
        opacity: 0.35;
    }
    40% {
        transform: translateY(8px) rotate(-4deg) scale(0.9);
        opacity: 0.12;
    }
    60% {
        transform: translateY(-18px) rotate(3deg) scale(1.05);
        opacity: 0.3;
    }
    80% {
        transform: translateY(15px) rotate(-6deg) scale(1.1);
        opacity: 0.15;
    }
}

@media (max-width: 767.98px) {
    .float-icon { display: none; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(201, 168, 76, 0.015) 80px, rgba(201, 168, 76, 0.015) 81px);
    opacity: 1;
}

.badge-hero {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 10px 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-out;
}

.hero-accent-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(201, 168, 76, 0.3));
    margin-bottom: 24px;
    border-radius: 2px;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
    max-width: 540px;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
}

.hero-img-wrapper {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    transition: transform 0.3s ease-out;
}

.hero-img {
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
    height: 420px;
    object-fit: cover;
    animation: imgGlow 4s ease-in-out infinite;
    position: relative;
}

@keyframes imgGlow {
    0%, 100% { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 rgba(201, 168, 76, 0); }
    50% { box-shadow: 0 30px 80px rgba(201, 168, 76, 0.15), 0 0 40px rgba(201, 168, 76, 0.08); }
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    inset: -25px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50% 50% 50% 0;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(201, 168, 76, 0.2); }
    50% { border-color: rgba(201, 168, 76, 0.4); }
}

.hero-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid var(--accent);
    border-radius: 50% 50% 50% 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollPulse {
    0% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.4); }
    100% { opacity: 1; transform: scaleY(1); }
}

.scroll-indicator span {
    animation: scrollFade 2.5s ease-in-out infinite;
}

@keyframes scrollFade {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* ---------- IMAGE STACK (auto-changing) ---------- */
.image-stack {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.image-stack-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: imageStackFade 16s ease-in-out infinite;
    border-radius: var(--radius, 8px);
}

.image-stack-img[data-stack="0"] { animation-delay: 0s; }
.image-stack-img[data-stack="1"] { animation-delay: 4s; }
.image-stack-img[data-stack="2"] { animation-delay: 8s; }
.image-stack-img[data-stack="3"] { animation-delay: 12s; }

@keyframes imageStackFade {
    0%, 20% { opacity: 0; }
    5%, 15% { opacity: 1; }
    25%, 100% { opacity: 0; }
}

/* ---------- ABOUT ---------- */
.about-img-grid {
    position: relative;
    padding-right: 60px;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img-small {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 6px solid var(--white);
    object-fit: cover;
}

/* ---------- SERVICES ---------- */
.service-card {
    background: var(--white);
    padding: 40px 28px 36px;
    border-radius: var(--radius);
    height: 100%;
    transition: all var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height 0.5s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.service-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 18px;
    transition: all var(--transition);
}

.service-card:hover .service-icon-circle {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.08);
}

.service-category-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-second);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}

.service-category-title i {
    color: var(--accent);
    font-size: 18px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

h4.service-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.service-text {
    font-size: 14px;
    color: var(--text-second);
    line-height: 1.7;
    margin: 0;
}

/* ---------- PROCESS STEPS ---------- */
.step-card {
    padding: 40px 24px;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    margin-bottom: 8px;
}

.step-icon {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.step-text {
    font-size: 15px;
    color: var(--text-second);
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

/* ---------- PHILOSOPHY ---------- */
.phil-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    height: 100%;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.phil-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.phil-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
    line-height: 1;
}

.phil-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 14px;
}

.phil-text {
    font-size: 14px;
    color: var(--text-second);
    line-height: 1.7;
    margin: 0;
}

/* ---------- MENU CARDS ---------- */
.menu-card {
    background: #fdfcfa;
    border: 1px solid #e8e0d6;
    border-top: 4px solid var(--accent);
    padding: 0;
    width: 100%;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.menu-card-header {
    padding: 32px 32px 20px;
    border-bottom: 1px dashed #e0d6c8;
    text-align: center;
}

.menu-card-header .menu-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 8px;
}

.menu-card-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 6px;
}

.menu-card-header .menu-sub {
    font-size: 13px;
    color: var(--text-second);
    font-style: italic;
    margin: 0;
}

.menu-card-header .menu-price {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e0d6c8;
}

.menu-body {
    padding: 20px 32px 28px;
    flex: 1;
}

.menu-item {
    padding: 16px 0;
    border-bottom: 1px dotted #e0d6c8;
}

.menu-item:last-of-type {
    border-bottom: none;
}

.menu-course {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.menu-desc {
    display: block;
    font-size: 13px;
    color: var(--text-second);
    line-height: 1.6;
}

.menu-wine {
    display: block;
    font-size: 11px;
    color: var(--accent);
    font-style: italic;
    margin-top: 4px;
}

.menu-note {
    font-size: 12px;
    color: var(--accent);
    font-style: italic;
    text-align: center;
    padding: 14px;
    border-top: 1px dashed #e0d6c8;
    margin-top: 4px;
    font-family: var(--font-heading);
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

#testimonialCarousel .testimonial-card {
    padding: 48px 40px 36px;
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--white) 0%, rgba(201, 168, 76, 0.04) 100%);
    position: relative;
}

#testimonialCarousel .testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    line-height: 1;
    color: rgba(201, 168, 76, 0.1);
    font-family: var(--font-heading);
    pointer-events: none;
}

#testimonialCarousel .testimonial-text {
    font-size: 17px;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.testimonial-loc {
    font-size: 13px;
    color: var(--text-second);
}

/* ---------- TESTIMONIAL CAROUSEL ---------- */
#testimonialCarousel .carousel-inner {
    padding: 0 0 20px;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

#testimonialCarousel .carousel-control-prev {
    left: -24px;
}

#testimonialCarousel .carousel-control-next {
    right: -24px;
}

.carousel-ctrl {
    font-size: 18px;
    color: var(--text);
    transition: color var(--transition);
}

#testimonialCarousel .carousel-control-prev:hover .carousel-ctrl,
#testimonialCarousel .carousel-control-next:hover .carousel-ctrl {
    color: var(--white);
}

#testimonialCarousel .carousel-indicators {
    position: static;
    margin-top: 28px;
    gap: 8px;
}

#testimonialCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background: transparent;
    opacity: 1;
    margin: 0;
    transition: all var(--transition);
}

#testimonialCarousel .carousel-indicators button.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

/* ---------- GALLERY MASONRY ---------- */
.gallery-masonry {
    column-count: 3;
    column-gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
    transition: transform 0.6s ease;
}

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

@media (max-width: 767.98px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 479.98px) {
    .gallery-masonry {
        column-count: 1;
    }
}

/* ---------- PAGE BANNER (inner pages) ---------- */
.page-banner {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #1a2a2a 0%, #2D4443 100%);
    text-align: center;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    max-width: 540px;
    margin: 0 auto;
}

/* ---------- FAQ ---------- */
.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    padding: 20px 24px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-light);
    color: var(--text);
}

.accordion-button::after {
    background-size: 14px;
}

.accordion-body {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-second);
    line-height: 1.7;
}

/* ---------- CONTACT SECTION ---------- */
.section-contact {
    background: linear-gradient(135deg, #1a2a2a 0%, #2D4443 100%);
    position: relative;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
}

.contact-details.justify-content-center {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
}

.contact-details.justify-content-center .contact-item {
    font-size: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-item i {
    font-size: 20px;
    color: var(--accent);
    width: 24px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 6px;
    border: 1px solid #c5c9c8;
    padding: 14px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #99a3a2;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #1a2828;
    padding: 80px 0 0;
    color: #a8b1ae;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.6;
}

.footer-top {
    padding-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-brand-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.footer-brand-text .brand-sub {
    font-size: 9px;
    font-family: var(--font-body);
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 500;
    margin-top: -1px;
    text-align: left;
    width: 100%;
    text-transform: uppercase;
    opacity: 0.85;
}

.footer-brand-accent {
    color: var(--accent);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #8a9f9b;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #a8b1ae;
    font-size: 18px;
    line-height: 1;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social a i,
.footer-social a [class*="fi"] {
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.25);
}

.footer-trust {
    margin-top: 20px;
}

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--accent);
    background: rgba(201, 168, 76, 0.08);
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.footer-trust-badge i {
    font-size: 11px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-links span {
    font-size: 14px;
    color: #8a9f9b;
    transition: all var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links-contact li span {
    display: block;
    line-height: 1.5;
}

.footer-newsletter-text {
    font-size: 13px;
    line-height: 1.6;
    color: #8a9f9b;
    margin-bottom: 16px;
}

.footer-newsletter {
    display: flex;
    gap: 0;
    max-width: 320px;
}

.footer-newsletter-input {
    flex: 1;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    color: var(--white);
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition);
}

.footer-newsletter-input::placeholder {
    color: #6a7f7b;
}

.footer-newsletter-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 15px;
}

.footer-newsletter-btn:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.footer-newsletter-note {
    font-size: 11px;
    color: #6a7f7b;
    margin-top: 8px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright {
    font-size: 13px;
    margin: 0;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.footer-legal li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
    position: relative;
}

.footer-legal li a:hover {
    color: var(--accent);
}

.footer-credit {
    font-size: 12px;
    margin-top: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
}

.footer-credit a {
    color: var(--accent);
    transition: color var(--transition);
}

.footer-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-img {
        height: 320px;
        max-width: 320px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-img-small {
        width: 140px;
        height: 140px;
    }

    .navbar {
        background: var(--text);
    }

    .navbar.scrolled {
        background: var(--white);
    }

    .nav-link {
        color: var(--white) !important;
    }

    .navbar.scrolled .nav-link {
        color: var(--text) !important;
    }

    .navbar-brand {
        font-size: 22px;
    }

    .navbar-brand-img {
        width: 36px;
        height: 36px;
    }

    .navbar-brand-text .brand-sub {
        font-size: 8px;
        letter-spacing: 1px;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 110px 16px 60px;
    }

    .hero-title {
        font-size: 30px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-sub {
        font-size: 16px;
        max-width: 100%;
    }

    .badge-hero {
        font-size: 10px;
        letter-spacing: 3px;
        padding: 8px 18px;
    }

    .hero-accent-line {
        width: 60px;
        height: 2px;
    }

    .hero-img {
        height: 260px;
        max-width: 260px;
    }

    .scroll-indicator {
        display: none;
    }

    .about-img-small {
        display: none;
    }

    .about-img-grid {
        padding-right: 0;
    }

    .section-title {
        font-size: 28px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .menu-card-header h3 {
        font-size: 16px;
    }

    .contact-form {
        padding: 24px;
    }

    .navbar .btn-accent {
        margin-top: 8px;
    }

    .footer {
        padding: 60px 0 0;
    }

    .footer-legal {
        justify-content: flex-start;
        margin-top: 12px;
    }

    .footer-top {
        padding-bottom: 32px;
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .navbar-brand {
        font-size: 18px;
        gap: 8px;
    }

    .navbar-brand-img {
        width: 32px;
        height: 32px;
    }

    .navbar-brand-text .brand-sub {
        font-size: 7px;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 26px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero {
        padding: 100px 16px 50px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .badge-hero {
        font-size: 9px;
        letter-spacing: 2px;
        padding: 6px 14px;
    }

    .hero-accent-line {
        width: 50px;
    }

    .hero .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
        gap: 12px !important;
    }

    .hero .d-flex.flex-wrap.gap-3 .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 14px;
    }

    .hero-img {
        height: 220px;
        max-width: 220px;
    }

    .step-number {
        font-size: 44px;
    }

    .step-card {
        padding: 24px 16px;
    }

    .service-card {
        padding: 28px 20px 24px;
    }

    .page-banner {
        padding: 140px 0 60px;
    }

    .page-banner h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .phil-card {
        padding: 28px 20px;
    }

    .menu-card-header {
        padding: 24px 20px 16px;
    }

    .menu-body {
        padding: 16px 20px 24px;
    }

    .menu-card-header h3 {
        font-size: 18px;
    }

    .navbar-brand {
        font-size: 16px;
        gap: 6px;
    }

    .navbar-brand-img {
        width: 28px;
        height: 28px;
    }
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float i,
.whatsapp-float [class*="fi"] {
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background: #20bd5a;
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.4; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- IMP PAGE (QR / Business Card) ---------- */
.imp-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #1a2a2a 0%, #2D4443 100%);
    text-align: center;
}

.imp-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.imp-header h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--white);
    margin-bottom: 8px;
}

.imp-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto 28px;
}

.imp-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.imp-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
}

.imp-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    transition: all var(--transition);
    height: 100%;
}

.imp-service i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

.imp-service:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.imp-contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.imp-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.imp-contact-item i {
    color: var(--accent);
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.imp-contact-item:hover {
    color: var(--accent);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, #1a2a2a 0%, #2D4443 50%, #1a2a2a 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-banner .btn-accent,
.cta-banner .btn-outline-accent {
    padding: 14px 36px;
    font-size: 15px;
}
