/* ── PAGE.CSS — Shared styles for all sub-pages ── */

/* FONTS */
body, p, span, div, a, li, input, select, textarea, button, .fw-500, .fw-600, .fs-20,
.btn-main, .subtitle, .uptitle, .d-tab-nav li, .form-control {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 300;
}
strong, b, .fw-500 { font-weight: 500; }
.fw-600, .btn-main { font-weight: 500; }

/* BASE */
body { background-color: #F1F1E0; }

/* NO ROUNDED BORDERS */
:root {
    --rounded-1: 0px !important;
    --btn-rounded: 0px !important;
    --mainmenu-font-weight: 300 !important;
    --mainmenu-font-size: 15px !important;
}

/* COLORS */
.bg-dark-1 { background-color: #1B3C2D !important; }
.section-dark { background-color: #052223 !important; }
.bg-color-op-5 { background-color: rgba(162, 186, 72, 0.08) !important; }
.id-color { color: #A2BA48 !important; }

.btn-main {
    background: #A2BA48 !important;
    color: #fff !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-main:hover { background: #1B3C2D !important; color: #fff !important; }
.btn-main.hover-white:hover { background: #fff !important; color: #1B3C2D !important; }

footer.section-dark .subfooter { border-top: 1px solid rgba(162, 186, 72, 0.2); }

/* HEADER */
header, header.header-light, header.header-light.transparent,
header.smaller, header.header-light.smaller,
body:not(.side-layout) header:not(.smaller):not(.header-mobile).header-light.transparent {
    background: #1B3C2D !important;
}
header .menu-item, header #mainmenu li a {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 300 !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 0.3px;
}
header #mainmenu > li > a:hover, header #mainmenu > li > a.active { color: #A2BA48 !important; }

/* DROPDOWN SUBMENU — dark text on white bg */
#mainmenu ul { background: #fff !important; }
#mainmenu li ul li a,
#mainmenu li ul li a.menu-item {
    color: #1B3C2D !important;
    font-size: 0.9rem !important;
    padding: 10px 18px !important;
    display: block !important;
}
#mainmenu li ul li a:hover,
#mainmenu li ul li a.menu-item:hover {
    background: #1B3C2D !important;
    color: #fff !important;
}

#menu-btn, header.header-light #menu-btn,
header.header-mobile.header-light #menu-btn { color: #fff !important; border-color: transparent !important; background: none !important; }
#menu-btn::before, header.header-light #menu-btn::before { color: #fff !important; }
.header-ig-link:hover { color: #A2BA48 !important; }
header.header-light.header-mobile #mainmenu { background: #1B3C2D !important; }
header.header-light.header-mobile #mainmenu > li > a { color: rgba(255,255,255,0.85) !important; border-color: rgba(255,255,255,0.08) !important; }
header.header-light.header-mobile #mainmenu li ul li a { color: rgba(255,255,255,0.7) !important; }
header.header-light.header-mobile #mainmenu li ul { background: rgba(0,0,0,0.15) !important; border: none !important; }
#logo img { max-height: 50px; }

/* PAGE HERO */
.page-hero {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    position: relative;
    margin-top: 80px;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,34,35,0.85) 0%, rgba(5,34,35,0.3) 100%);
}
.page-hero .container { position: relative; z-index: 2; padding-bottom: 60px; }
.page-hero h1 {
    font-size: 3rem;
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 300;
    margin-bottom: 10px;
}
.page-hero .subtitle-hero {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
}

/* BREADCRUMB */
.breadcrumb { font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(0,0,0,0.3); }
.mt-100 { margin-top: 100px; }

/* CONTENT SECTIONS */
.content-section { padding: 80px 0; }
.content-section.alt { background-color: rgba(162, 186, 72, 0.08); }
.content-section.dark { background-color: #1B3C2D; color: #fff; }

/* SERVICE CARDS */
.service-detail-card {
    background: #fff;
    padding: 24px;
    border-left: 4px solid #A2BA48;
    transition: all 0.3s ease;
}
/* Only stretch cards to equal height when in a grid row */
.row > [class*="col-"] > .service-detail-card { height: 100%; }
.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(5, 34, 35, 0.12);
}
.service-detail-card i {
    font-size: 24px;
    color: #A2BA48;
    margin-bottom: 10px;
    display: block;
}
.service-detail-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.service-detail-card p { color: #6B6B6B; font-size: 0.9rem; margin-bottom: 0; line-height: 1.5; }

/* FAQ ACCORDION */
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.05rem;
    color: #1B3C2D;
    transition: color 0.2s;
}
.faq-question:hover { color: #A2BA48; }
.faq-question i { transition: transform 0.3s; color: #A2BA48; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: #6B6B6B;
    line-height: 1.7;
}
.faq-answer.open { max-height: 500px; padding-bottom: 20px; }

/* EXPERT QUOTE */
.expert-quote {
    background: rgba(162, 186, 72, 0.08);
    padding: 30px;
    border-left: 4px solid #A2BA48;
    margin: 40px 0;
}
.expert-quote blockquote {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #1B3C2D;
}
.expert-quote cite { color: #A2BA48; font-weight: 500; }

/* CTA SECTION */
.cta-section {
    background: #1B3C2D;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}
.cta-section h2 { color: #fff; margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 25px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* GALLERY GRID */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-grid .gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-grid .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-grid .gallery-item:hover img { transform: scale(1.05); }
.gallery-grid .gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,60,45,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    font-weight: 500;
}
.gallery-grid .gallery-item:hover .overlay { opacity: 1; }

/* STAT COUNTERS */
.stat-box { text-align: center; padding: 30px; }
.stat-box .stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #A2BA48;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-box .stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* BLOG CARDS */
.blog-card {
    background: #fff;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(5, 34, 35, 0.12); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card .blog-card-body { padding: 24px; }
.blog-card .blog-card-date { color: #A2BA48; font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card h3 { font-size: 1.2rem; margin: 8px 0 12px; }
.blog-card h3 a { color: #1B3C2D; text-decoration: none; }
.blog-card h3 a:hover { color: #A2BA48; }
.blog-card p { color: #6B6B6B; font-size: 0.9rem; line-height: 1.6; }

/* PROCESS TIMELINE */
.timeline-step {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.timeline-step:last-child { border-bottom: none; }
.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(162, 186, 72, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #A2BA48;
}
.timeline-content h3 { font-size: 1.3rem; margin-bottom: 8px; }
.timeline-delay {
    display: inline-block;
    background: rgba(162, 186, 72, 0.15);
    color: #A2BA48;
    padding: 3px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* CONTACT FORM */
.contact-form .form-control {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 14px 16px;
    font-size: 0.95rem;
}
.contact-form .form-control:focus { border-color: #A2BA48; box-shadow: 0 0 0 2px rgba(162, 186, 72, 0.15); }

/* RESPONSIVE */
@media (max-width: 991px) {
    .page-hero { min-height: 300px; margin-top: 64px; }
    .page-hero h1 { font-size: 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .content-section { padding: 50px 0; }
}
@media (max-width: 575px) {
    .page-hero { min-height: 250px; }
    .page-hero h1 { font-size: 1.6rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .timeline-step { flex-direction: column; gap: 15px; }
    .stat-box .stat-number { font-size: 2.2rem; }
}
