/* ============================================================
   JESJEG GROUP – MAIN STYLESHEET
   ============================================================ */

/* -- CSS Variables ------------------------------------------ */
:root {
    --jg-green:      #2d5a27;
    --jg-green-dark: #1a3a16;
    --jg-green-light:#3d7a35;
    --jg-gold:       #e1b12c;
    --jg-gold-dark:  #c49b1a;
    --jg-white:      #ffffff;
    --jg-light:      #f6f8f5;
    --jg-gray:       #6b7280;
    --jg-dark:       #111827;
    --jg-border:     #e5e7eb;

    --font-body: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 48px rgba(0,0,0,0.16);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--jg-dark);
}

/* -- Utility Classes --------------------------------------- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--jg-gold);
    background: rgba(225, 177, 44, 0.12);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--jg-gray);
    max-width: 600px;
}

.text-jg-green { color: var(--jg-green) !important; }
.text-jg-gold  { color: var(--jg-gold) !important; }
.bg-jg-green   { background: var(--jg-green) !important; }
.bg-jg-light   { background: var(--jg-light) !important; }

/* -- Primary Button ---------------------------------------- */
.btn-primary-jg {
    background: linear-gradient(135deg, var(--jg-gold), var(--jg-gold-dark));
    color: var(--jg-dark);
    font-weight: 700;
    padding: 11px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
    font-size: 0.95rem;
}
.btn-primary-jg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 177, 44, 0.45);
    color: var(--jg-dark);
}

.btn-outline-jg {
    background: transparent;
    color: var(--jg-white);
    font-weight: 700;
    padding: 11px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
    font-size: 0.95rem;
}
.btn-outline-jg:hover {
    background: var(--jg-white);
    color: var(--jg-green);
    border-color: var(--jg-white);
}

/* ============================================================
   TOP BAR
   ============================================================ */
#topbar {
    background: var(--jg-green-dark);
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    padding: 8px 0;
}
#topbar a {
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}
#topbar a:hover { color: var(--jg-gold); }

.topbar-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    margin-left: 6px;
    transition: all var(--transition);
    font-size: 0.75rem;
}
.topbar-right a:hover { background: var(--jg-gold); color: var(--jg-dark); }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0;
    transition: all var(--transition);
    z-index: 1030;
}

#mainNav.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.14);
}

#mainNav .navbar-brand img {
    transition: transform var(--transition);
    height: 52px !important;
    max-height: 52px !important;
    width: auto !important;
    object-fit: contain;
}
#mainNav .navbar-brand:hover img {
    transform: scale(1.04);
}

#mainNav .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--jg-dark) !important;
    padding: 20px 16px !important;
    position: relative;
    transition: color var(--transition);
    letter-spacing: 0.01em;
}
#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--jg-gold);
    transform: scaleX(0);
    transition: transform var(--transition);
    border-radius: 2px;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { transform: scaleX(1); }
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--jg-green) !important; }

#mainNav .dropdown-menu {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    min-width: 220px;
    animation: fadeInDown 0.2s ease;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
#mainNav .dropdown-item {
    font-size: 0.88rem;
    font-weight: 500;
    padding: 10px 20px;
    color: var(--jg-dark);
    transition: all var(--transition);
}
#mainNav .dropdown-item:hover {
    background: var(--jg-light);
    color: var(--jg-green);
    padding-left: 26px;
}

#mainNav .navbar-toggler {
    border: 2px solid var(--jg-green);
    border-radius: 8px;
    padding: 5px 10px;
}
#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%232d5a27' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--jg-green-dark) 0%, var(--jg-green) 60%, #4a7a42 100%);
    overflow: hidden;
}

#hero .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    mix-blend-mode: luminosity;
}

#hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,58,22,0.92) 45%, rgba(26,58,22,0.4) 100%);
}

#hero .hero-content {
    position: relative;
    z-index: 2;
    color: var(--jg-white);
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(225,177,44,0.18);
    border: 1px solid rgba(225,177,44,0.5);
    color: var(--jg-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: pulse-badge 3s ease infinite;
}
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(225,177,44,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(225,177,44,0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: var(--jg-white);
    line-height: 1.1;
    margin-bottom: 22px;
}
.hero-title .highlight {
    color: var(--jg-gold);
    position: relative;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--jg-gold);
    line-height: 1;
    display: block;
}
.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    margin-top: 4px;
    display: block;
    letter-spacing: 0.04em;
}

.hero-img-col {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 380px;
    width: 100%;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero-img-card img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero-img-tag {
    position: absolute;
    background: var(--jg-white);
    border-radius: var(--radius);
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--jg-dark);
    white-space: nowrap;
}
.hero-img-tag i { font-size: 1.2rem; color: var(--jg-green); }
.hero-img-tag-1 { bottom: -20px; left: -30px; animation: float-tag 5s ease-in-out infinite; }
.hero-img-tag-2 { top: -20px; right: -20px; animation: float-tag 5s 1.5s ease-in-out infinite; }
@keyframes float-tag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
    background: var(--jg-light);
}

.service-card {
    background: var(--jg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.service-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,58,22,0.85));
}
.service-card-icon {
    position: absolute;
    bottom: 16px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--jg-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jg-dark);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.service-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--jg-dark);
}
.service-card-text {
    font-size: 0.9rem;
    color: var(--jg-gray);
    flex: 1;
    margin-bottom: 18px;
}
.service-card-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--jg-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.service-card-link:hover {
    color: var(--jg-gold);
    gap: 12px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about .about-img-wrap {
    position: relative;
}

.about-main-img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--jg-green);
    color: var(--jg-white);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-badge-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--jg-gold);
    display: block;
    line-height: 1;
}

.about-list { list-style: none; padding: 0; margin: 24px 0; }
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #374151;
}
.about-list li i {
    color: var(--jg-green);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1rem;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why {
    background: linear-gradient(135deg, var(--jg-green-dark) 0%, var(--jg-green) 100%);
    color: var(--jg-white);
    position: relative;
    overflow: hidden;
}
#why::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
#why .section-title { color: var(--jg-white); }
#why .section-subtitle { color: rgba(255,255,255,0.7); }

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}
.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(225,177,44,0.15);
    border: 1px solid rgba(225,177,44,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jg-gold);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all var(--transition);
}
.why-item:hover .why-icon {
    background: var(--jg-gold);
    color: var(--jg-dark);
}
.why-text h4 { font-size: 1.05rem; font-weight: 700; color: var(--jg-white); margin-bottom: 6px; }
.why-text p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ============================================================
   STATS COUNTER
   ============================================================ */
#stats { background: var(--jg-white); }

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.stat-item:hover {
    background: var(--jg-light);
    transform: translateY(-5px);
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--jg-green);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--jg-gray);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.stat-icon {
    font-size: 2rem;
    color: var(--jg-gold);
    margin-bottom: 12px;
    display: block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--jg-light); }

.testimonial-card {
    background: var(--jg-white);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.testimonial-card::before {
    content: '\201C';
    font-family: serif;
    font-size: 5rem;
    color: var(--jg-gold);
    opacity: 0.25;
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
}
.testimonial-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.testimonial-stars { color: var(--jg-gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jg-green), var(--jg-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jg-white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--jg-dark); }
.author-role { font-size: 0.8rem; color: var(--jg-gray); }

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
#gallery-preview { background: var(--jg-white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
    grid-row: span 2;
}
.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img { height: 100%; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,58,22,0.8));
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
    color: var(--jg-white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact-strip {
    background: linear-gradient(135deg, var(--jg-green-dark), var(--jg-green));
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
#contact-strip::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.contact-card {
    background: var(--jg-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}
.contact-info-card {
    background: var(--jg-green);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: var(--jg-white);
    height: 100%;
}
.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(225,177,44,0.2);
    border: 1px solid rgba(225,177,44,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jg-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-text strong { display: block; font-weight: 700; margin-bottom: 3px; }
.contact-info-text small { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* Form Styling */
.form-label { font-weight: 600; font-size: 0.87rem; margin-bottom: 6px; color: #374151; }
.form-control, .form-select {
    border: 1.5px solid var(--jg-border);
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 11px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #fafafa;
}
.form-control:focus, .form-select:focus {
    border-color: var(--jg-green);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.12);
    background: var(--jg-white);
    outline: none;
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* ============================================================
   FOOTER
   ============================================================ */
#mainFooter {
    background: #0d1f09;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--jg-gold);
    margin-bottom: 20px;
    font-family: var(--font-body);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: '›';
    color: var(--jg-gold);
    font-size: 1rem;
    transition: transform var(--transition);
    display: inline-block;
}
.footer-links a:hover { color: var(--jg-gold); }
.footer-links a:hover::before { transform: translateX(3px); }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,0.6);
    font-size: 0.87rem;
    margin-bottom: 14px;
}
.footer-contact-list i { color: var(--jg-gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.65); }
.footer-contact-list a:hover { color: var(--jg-gold); }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    transition: all var(--transition);
}
.footer-socials a:hover {
    background: var(--jg-gold);
    color: var(--jg-dark);
    transform: translateY(-3px);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 50px 0 30px;
}
.footer-bottom {
    padding-bottom: 30px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom p { margin: 0; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--jg-gold);
    color: var(--jg-dark);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
    font-size: 1rem;
}
#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#backToTop:hover {
    background: var(--jg-green);
    color: var(--jg-white);
    transform: translateY(-4px);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--jg-green-dark), var(--jg-green));
    padding: 100px 0 70px;
    color: var(--jg-white);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/hero-bg.jpg') center / cover no-repeat;
    opacity: 0.07;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--jg-white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.breadcrumb-item.active { color: var(--jg-gold); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--jg-green), var(--jg-green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--jg-white);
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(45,90,39,0.3);
}

.service-features-list {
    list-style: none;
    padding: 0;
}
.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--jg-border);
    font-size: 0.93rem;
    color: #374151;
}
.service-features-list li:last-child { border-bottom: none; }
.service-features-list li i { color: var(--jg-green); margin-top: 2px; }

.sidebar-card {
    background: var(--jg-light);
    border-radius: var(--radius);
    padding: 28px;
    border-left: 4px solid var(--jg-green);
}
.sidebar-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-wrapper iframe { width: 100%; height: 380px; border: none; display: block; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filter .btn {
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 22px;
    border: 2px solid var(--jg-border);
    background: transparent;
    color: var(--jg-gray);
    transition: all var(--transition);
    margin: 4px;
}
.gallery-filter .btn.active,
.gallery-filter .btn:hover {
    background: var(--jg-green);
    border-color: var(--jg-green);
    color: var(--jg-white);
}

.gallery-full-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-full-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-full-item:hover img { transform: scale(1.06); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: var(--jg-border);
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--jg-green);
    border: 3px solid var(--jg-white);
    box-shadow: 0 0 0 2px var(--jg-green);
}
.timeline-year {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--jg-gold);
    margin-bottom: 4px;
}
.timeline-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.timeline-text { font-size: 0.88rem; color: var(--jg-gray); }

.team-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--jg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--jg-green), var(--jg-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--jg-white);
    font-family: var(--font-heading);
    font-weight: 700;
}
.team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--jg-gold); font-weight: 600; margin-bottom: 12px; }
.team-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--jg-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--jg-gray);
    font-size: 0.75rem;
    margin: 0 3px;
    transition: all var(--transition);
}
.team-socials a:hover { background: var(--jg-green); color: var(--jg-white); }

/* ============================================================
   LOADER
   ============================================================ */
#pageLoader {
    position: fixed;
    inset: 0;
    background: var(--jg-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.15);
    border-top-color: var(--jg-gold);
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    #mainNav .nav-link { padding: 12px 16px !important; }
    #mainNav .nav-link::after { display: none; }
    .hero-stats { gap: 24px; }
    .about-badge { right: 10px; bottom: 20px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) { grid-row: auto; }
    .gallery-item:nth-child(1) img,
    .gallery-item:nth-child(4) img { height: 220px; }
}
@media (max-width: 767.98px) {
    .section-pad { padding: 60px 0; }
    .hero-title { font-size: 2.2rem; }
    .hero-img-col { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .hero-img-tag-1, .hero-img-tag-2 { display: none; }
    .contact-card { padding: 28px 20px; }
    .contact-info-card { padding: 28px 20px; }
    #topbar { display: none; }
}

/* ============================================================
   BOOKING WIZARD – SHARED
   ============================================================ */
.booking-hero { background: linear-gradient(135deg, var(--jg-green-dark), var(--jg-green)); padding: 90px 0 60px; }

/* Step Indicator */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}
.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
}
.booking-step .step-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .95rem;
    border: 2px solid #d1d5db;
    transition: all .3s;
}
.booking-step.active .step-circle {
    background: var(--jg-green);
    color: #fff;
    border-color: var(--jg-green);
    box-shadow: 0 0 0 4px rgba(45,90,39,.2);
}
.booking-step.done .step-circle {
    background: var(--jg-gold);
    color: var(--jg-dark);
    border-color: var(--jg-gold);
}
.booking-step span { font-size: .72rem; font-weight: 600; color: #9ca3af; text-align: center; }
.booking-step.active span, .booking-step.done span { color: var(--jg-green); }
.step-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 4px;
    margin-bottom: 18px;
    min-width: 30px;
}
.step-line.done { background: var(--jg-gold); }

/* ============================================================
   LAYER 1 – SEARCH FORM
   ============================================================ */
.booking-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,.1);
    overflow: hidden;
}

/* Service Tabs */
.booking-tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    overflow-x: auto;
}
.booking-tab {
    flex: 1;
    padding: 18px 20px;
    background: #f9fafb;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    font-size: .88rem;
    color: #6b7280;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
    display: flex; align-items: center; justify-content: center;
}
.booking-tab:hover { background: #f0fdf4; color: var(--jg-green); }
.booking-tab.active {
    background: #fff;
    color: var(--jg-green);
    border-bottom-color: var(--jg-green);
    border-top: 3px solid transparent;
}
.booking-tab i { font-size: 1rem; }

/* Form Grid */
.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 32px;
}
@media (max-width: 991px) { .booking-form-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px)  { .booking-form-grid { grid-template-columns: 1fr; } }

.bform-group label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.bform-control {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: .9rem;
    color: #111827;
    background: #fafafa;
    transition: border-color .2s, box-shadow .2s;
    appearance: auto;
}
.bform-control:focus {
    border-color: var(--jg-green);
    box-shadow: 0 0 0 3px rgba(45,90,39,.1);
    outline: none;
    background: #fff;
}

/* Frequency */
.freq-options { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.freq-option {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: .83rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all .2s;
    min-width: 70px;
}
.freq-option input { display: none; }
.freq-option:hover, .freq-option.active {
    border-color: var(--jg-green);
    background: #f0fdf4;
    color: var(--jg-green);
}

/* Search Button */
.btn-search-booking {
    background: linear-gradient(135deg, var(--jg-green-dark), var(--jg-green));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all .3s;
    box-shadow: 0 6px 20px rgba(45,90,39,.35);
}
.btn-search-booking:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(45,90,39,.45); }

/* Quick Service Cards */
.quick-service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 20px;
    font-weight: 600;
    font-size: .9rem;
    color: #374151;
    text-decoration: none;
    transition: all .3s;
}
.quick-service-card i:first-child { font-size: 1.4rem; color: var(--jg-green); }
.quick-service-card:hover, .quick-service-card.current {
    border-color: var(--jg-green);
    background: #f0fdf4;
    color: var(--jg-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45,90,39,.12);
}

/* ============================================================
   LAYER 2 – RESULTS
   ============================================================ */
/* Modify search bar */
.results-search-bar {
    background: #fff;
    border-radius: 14px;
    padding: 16px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    border: 1.5px solid #e5e7eb;
}
.rsb-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: #374151; font-weight: 600; }
.rsb-item i { color: var(--jg-green); }
.rsb-divider { width: 1px; height: 24px; background: #e5e7eb; }
.btn-modify-search {
    background: var(--jg-green);
    color: #fff;
    border-radius: 50px;
    padding: 8px 22px;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    white-space: nowrap;
}
.btn-modify-search:hover { background: var(--jg-green-dark); color: #fff; }

/* Date Strip */
.date-strip-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    overflow: hidden;
    border: 1.5px solid #e5e7eb;
}
.date-strip {
    display: flex;
    overflow-x: auto;
    flex: 1;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.date-strip::-webkit-scrollbar { display: none; }
.date-strip-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 20px;
    min-width: 100px;
    text-decoration: none;
    color: #374151;
    border-right: 1px solid #f0f0f0;
    transition: all .25s;
    flex-shrink: 0;
}
.date-strip-item:hover { background: #f0fdf4; color: var(--jg-green); }
.date-strip-item.selected {
    background: var(--jg-light);
    border: 2px solid var(--jg-gold);
    color: var(--jg-dark);
    border-radius: 10px;
    margin: 4px;
}
.ds-day { font-size: 1.4rem; font-weight: 700; line-height: 1; }
.ds-month { font-size: .72rem; color: #9ca3af; margin: 3px 0; }
.date-strip-item.selected .ds-month { color: #6b7280; }
.ds-price { font-size: .8rem; font-weight: 700; color: var(--jg-green); }
.date-strip-item.selected .ds-price { color: var(--jg-gold); }
.ds-nav {
    width: 44px; min-width: 44px; height: 100%;
    background: #f9fafb; border: none;
    color: #6b7280; font-size: 1rem; cursor: pointer;
    transition: all .2s;
    display: flex; align-items: center; justify-content: center;
    padding: 0;
}
.ds-nav:hover { background: var(--jg-light); color: var(--jg-green); }
.ds-calendar {
    display: flex; flex-direction: column; align-items: center;
    padding: 14px 16px; gap: 4px;
    color: #6b7280; font-size: 1.3rem;
    border-left: 1px solid #e5e7eb;
    text-decoration: none;
    transition: color .2s;
    min-width: 64px;
}
.ds-calendar small { font-size: .65rem; font-weight: 600; }
.ds-calendar:hover { color: var(--jg-green); }

/* Tier Legend */
.tier-legend { display: flex; gap: 8px; flex-wrap: wrap; }
.tier-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
}
.tier-basic      { background: #ecfdf5; color: #059669; border: 1px solid #d1fae5; }
.tier-standard   { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.tier-premium    { background: #f0f4ff; color: #4f46e5; border: 1px solid #c7d2fe; }
.tier-enterprise { background: #fdf4ff; color: #7c3aed; border: 1px solid #e9d5ff; }

/* Package Row */
.packages-list { display: flex; flex-direction: column; gap: 12px; }
.package-row {
    display: grid;
    grid-template-columns: 280px repeat(4, 1fr);
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: box-shadow .25s;
}
.package-row:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }

.pkg-info {
    padding: 20px 22px;
    border-right: 1px solid #f0f0f0;
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
}
.pkg-time { font-size: 1.5rem; font-weight: 800; color: #111827; line-height: 1; }
.pkg-meta { display: flex; flex-direction: column; gap: 3px; }
.pkg-location { font-size: .83rem; font-weight: 700; color: #374151; }
.pkg-duration  { font-size: .78rem; color: #9ca3af; }
.pkg-label     { font-size: .78rem; font-weight: 600; color: var(--jg-green); }
.pkg-details-link { font-size: .78rem; color: #9ca3af; cursor: pointer; display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.pkg-details-link:hover { color: var(--jg-gold); }

.pkg-tier-cell {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 16px 10px;
    border-right: 1px solid #f0f0f0;
    gap: 6px;
    min-height: 100px;
}
.pkg-tier-cell:last-child { border-right: none; }
.pkg-tier-cell.unavailable { background: #fafafa; }
.pkg-price { font-size: 1.15rem; font-weight: 800; color: #111827; }
.pkg-note { font-size: .68rem; font-weight: 700; padding: 2px 10px; border-radius: 50px; }
.note-best  { background: #dcfce7; color: #16a34a; }
.note-warn  { background: #fef9c3; color: #ca8a04; }
.pkg-no-icon { font-size: 1.5rem; color: #d1d5db; }
.pkg-no-text { font-size: .68rem; font-weight: 700; color: #d1d5db; text-align: center; }

.btn-select-tier {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    border: none; cursor: pointer; display: inline-block;
    margin-top: 4px;
}
.tier-basic.btn-select-tier      { background: #d1fae5; color: #059669; }
.tier-standard.btn-select-tier   { background: #fde68a; color: #92400e; }
.tier-premium.btn-select-tier    { background: #c7d2fe; color: #3730a3; }
.tier-enterprise.btn-select-tier { background: #e9d5ff; color: #6d28d9; }
.btn-select-tier:hover { filter: brightness(.9); transform: translateY(-1px); }

@media (max-width: 991px) {
    .package-row { grid-template-columns: 1fr 1fr; }
    .pkg-info { grid-column: 1 / -1; border-right: none; border-bottom: 1px solid #f0f0f0; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 14px; }
}

/* Back / navigation buttons */
.btn-back-booking {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px;
    border: 1.5px solid #e5e7eb;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    background: #fff;
    transition: all .25s;
    cursor: pointer;
}
.btn-back-booking:hover { border-color: var(--jg-green); color: var(--jg-green); }

/* ============================================================
   LAYER 3 – DETAILS FORM
   ============================================================ */
.details-panel {
    display: flex;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
    overflow: hidden;
    border: 1.5px solid #e5e7eb;
}
.details-sidebar {
    width: 220px; min-width: 220px;
    background: #f9fafb;
    border-right: 1.5px solid #e5e7eb;
    padding: 24px 0;
    display: flex; flex-direction: column; gap: 4px;
}
.details-sidebar-item {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    font-size: .85rem;
    font-weight: 600;
    color: #9ca3af;
    cursor: pointer;
    transition: all .2s;
    border-left: 3px solid transparent;
}
.details-sidebar-item.active { color: var(--jg-green); background: #f0fdf4; border-left-color: var(--jg-green); }
.details-sidebar-item:hover  { color: var(--jg-green); background: #f0fdf4; }

.details-form-area { flex: 1; padding: 32px; }
.details-section { display: none; }
.details-section.active { display: block; }
.details-panel-title { font-size: 1.15rem; font-weight: 700; color: var(--jg-dark); margin-bottom: 24px; display: flex; align-items: center; }
.details-panel-title i { color: var(--jg-green); }

.details-label {
    display: block; font-size: .8rem; font-weight: 700;
    color: #374151; margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: .05em;
}
.details-control {
    width: 100%; border: 1.5px solid #e5e7eb; border-radius: 10px;
    padding: 11px 14px; font-size: .9rem; color: #111827;
    background: #fafafa; transition: border-color .2s, box-shadow .2s;
    appearance: auto;
}
.details-control:focus {
    border-color: var(--jg-green); box-shadow: 0 0 0 3px rgba(45,90,39,.1);
    outline: none; background: #fff;
}
textarea.details-control { resize: vertical; min-height: 110px; }

/* Gender */
.gender-options { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.gender-opt {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px; border: 1.5px solid #e5e7eb; border-radius: 10px;
    font-size: .88rem; font-weight: 600; color: #374151; cursor: pointer; transition: all .2s;
}
.gender-opt:has(input:checked) { border-color: var(--jg-green); background: #f0fdf4; color: var(--jg-green); }
.gender-opt input { accent-color: var(--jg-green); }

/* Special assistance accordion */
.special-assist-toggle {
    display: flex; align-items: center; gap: 10px;
    background: #f9fafb; border: 1.5px solid #e5e7eb; border-radius: 12px;
    padding: 14px 18px; cursor: pointer; font-size: .88rem; font-weight: 600; color: #374151;
    transition: all .2s;
}
.special-assist-toggle:hover { background: #f0fdf4; border-color: var(--jg-green); }
.special-assist-body { display: none; padding: 0 4px; }
.special-assist-body.open { display: block; }

.sa-checkbox-label {
    display: flex; align-items: center; gap: 10px;
    font-size: .88rem; font-weight: 500; color: #374151; cursor: pointer;
    padding: 8px 0;
}
.sa-checkbox-label input { accent-color: var(--jg-green); width: 16px; height: 16px; }

/* Contact person */
.contact-person-toggle {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 0; font-size: .88rem; font-weight: 500; color: #374151; cursor: pointer;
    border-top: 1px solid #f0f0f0;
}
.contact-person-toggle input { accent-color: var(--jg-green); width: 16px; height: 16px; }

/* Next / Confirm buttons */
.btn-next-details, .btn-confirm-booking {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: .88rem; font-weight: 700;
    border: none; cursor: pointer; transition: all .3s;
}
.btn-next-details    { background: var(--jg-green); color: #fff; box-shadow: 0 4px 16px rgba(45,90,39,.3); }
.btn-next-details:hover { background: var(--jg-green-dark); transform: translateY(-2px); }
.btn-confirm-booking { background: var(--jg-gold); color: var(--jg-dark); box-shadow: 0 4px 16px rgba(225,177,44,.4); font-size: .95rem; padding: 14px 36px; }
.btn-confirm-booking:hover { filter: brightness(.92); transform: translateY(-2px); }

/* Booking Summary Card */
.booking-summary-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    overflow: hidden;
    border: 1.5px solid #e5e7eb;
    position: sticky; top: 100px;
}
.bsc-header { background: linear-gradient(135deg, var(--jg-green-dark), var(--jg-green)); padding: 22px 24px; color: #fff; }
.bsc-header h4 { font-size: 1rem; font-weight: 700; margin: 0; color: #fff; }
.bsc-body { padding: 22px 24px; }
.bsc-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: .85rem; border-bottom: 1px dashed #f0f0f0; }
.bsc-row span { color: #9ca3af; }
.bsc-row strong { color: #111827; text-align: right; }
.bsc-divider { border: none; border-top: 2px solid #e5e7eb; margin: 12px 0; }
.bsc-total { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; }
.bsc-total span { font-weight: 700; color: #374151; }
.bsc-price { font-size: 1.5rem; font-weight: 800; color: var(--jg-green); }
.bsc-note { font-size: .75rem; color: #9ca3af; margin-top: 12px; line-height: 1.6; }

/* Need Help Card */
.need-help-card {
    background: #fff; border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    padding: 24px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.need-help-card h6 { font-weight: 700; margin-bottom: 6px; }
.need-help-card p  { font-size: .83rem; color: #9ca3af; margin-bottom: 14px; }

@media (max-width: 767px) {
    .details-sidebar { display: none; }
    .details-panel { border-radius: 14px; }
}

/* ============================================================
   LAYER 4 – CONFIRMATION
   ============================================================ */
.confirm-card {
    background: #fff;
    border-radius: 24px;
    padding: 56px 48px;
    box-shadow: 0 12px 50px rgba(0,0,0,.1);
    border: 1.5px solid #e5e7eb;
}
.confirm-icon-wrap {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    animation: pop-in .4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes pop-in {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.confirm-icon { font-size: 2.8rem; color: #16a34a; }
.confirm-title    { font-size: 1.7rem; font-weight: 800; color: var(--jg-dark); margin-bottom: 12px; }
.confirm-subtitle { color: #6b7280; font-size: .95rem; line-height: 1.7; margin-bottom: 0; }
.confirm-ref-badge {
    display: inline-block;
    background: var(--jg-light);
    border: 1.5px dashed var(--jg-green);
    border-radius: 12px;
    padding: 12px 30px;
    font-size: .88rem;
    color: #374151;
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: .04em;
}
.confirm-ref-badge strong { color: var(--jg-green); font-size: 1rem; }
.confirm-summary { text-align: left; border: 1.5px solid #e5e7eb; border-radius: 14px; overflow: hidden; }
.cs-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 20px; border-bottom: 1px solid #f0f0f0; font-size: .88rem;
}
.cs-row:last-child { border-bottom: none; }
.cs-row span { color: #9ca3af; font-weight: 500; }
.cs-row strong { color: #111827; }
.cs-divider { border: none; border-top: 2px solid #e5e7eb; }
.confirm-print-btn {
    background: none; border: none; color: #9ca3af;
    font-size: .82rem; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color .2s;
}
.confirm-print-btn:hover { color: var(--jg-green); }

@media (max-width: 575px) {
    .confirm-card { padding: 36px 24px; }
    .booking-steps { gap: 2px; }
    .step-line { min-width: 16px; }
    .booking-step span { display: none; }
}

/* ============================================================
   CONTACT FORM – ALERTS
   ============================================================ */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: .9rem;
    line-height: 1.6;
    position: relative;
    animation: slide-down .35s ease both;
}
@keyframes slide-down {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.contact-alert-success {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    color: #166534;
}
.contact-alert-success i   { color: #16a34a; font-size: 1.4rem; margin-top: 2px; }
.contact-alert-success strong { color: #15803d; font-size: 1rem; display: block; }

.contact-alert-error {
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    color: #991b1b;
}
.contact-alert-error i   { color: #dc2626; font-size: 1.4rem; margin-top: 2px; }
.contact-alert-error strong { color: #b91c1c; font-size: 1rem; display: block; }

.alert-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    opacity: .5;
    transition: opacity .2s;
    padding: 0;
}
.alert-close:hover { opacity: 1; }

/* Send-button loading state */
#btnSendMsg:disabled { opacity: .75; cursor: not-allowed; }


