@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --forest:   #1a3a2a;
    --forest2:  #234d38;
    --sage:     #4a7c59;
    --sand:     #f5f0e8;
    --cream:    #faf8f3;
    --amber:    #c8852a;
    --amber2:   #e09a35;
    --ink:      #0f1f18;
    --body:     #3a4a40;
    --muted:    #7a8c80;
    --stone:    #e0d8c8;
    --white:    #ffffff;
    --border:   rgba(26,58,42,0.12);
    --shadow:   0 4px 24px rgba(15,31,24,0.1);
    --shadow-lg: 0 8px 40px rgba(15,31,24,0.15);
}

html {
    scroll-behavior: smooth;
    scroll-padding: 80px;
}

body {
    background-color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--body);
    line-height: 1.65;
}

a {
    transition: .3s ease;
    text-decoration: none;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* ── UTILITY ── */
.center-text { text-align: center; }
.flex        { display: flex; }
.flex-d      { display: flex; flex-direction: column; }
.space       { justify-content: space-between; }
.a-center    { align-items: center; }
.j-center    { justify-content: center; }
.wrap        { flex-wrap: wrap; }
.gap         { gap: 20px; }
.color       { color: var(--amber) !important; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── QUICK ACTIONS BAR ── */
.quick-actions {
    background-color: var(--forest);
    padding: 10px 40px;
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
}

.quick-actions a {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    transition: color .3s;
}

.quick-actions a:hover { color: var(--amber2); }

.quick-actions select {
    border: none;
    background: transparent;
    font-size: 0.78rem;
    cursor: pointer;
    color: rgba(255,255,255,0.6);
    font-family: 'Inter', sans-serif;
}

.quick-actions select option {
    background: var(--forest);
    color: white;
}

/* ── HEADER / NAV ── */
header {
    padding: 0 40px;
    height: 72px;
    justify-content: space-between;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 9000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(15,31,24,0.06);
}

header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--forest);
    letter-spacing: -0.01em;
}

header h2 span.color {
    color: var(--amber) !important;
}

nav { gap: 8px; }

nav a {
    color: var(--body);
    font-size: 0.85rem;
    font-weight: 400;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: color .3s, background .3s;
}

nav a::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 2px;
    background-color: var(--amber);
    left: 12px;
    bottom: 2px;
    transition: .3s ease;
}

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

nav a.active::after,
nav a:hover::after { width: calc(100% - 24px); }

.hamburger {
    font-size: 20px;
    font-weight: 700;
    display: none;
    cursor: pointer;
    position: absolute;
    left: 20px;
    color: var(--forest);
}

/* ── HERO ── */
.hero-section {
    background-image: url('../img/images.jpeg');
    min-height: 92vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-section::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    z-index: -1;
    background: linear-gradient(
        to bottom,
        rgba(10,25,18,0.55) 0%,
        rgba(10,25,18,0.72) 60%,
        rgba(10,25,18,0.85) 100%
    );
}

.row { width: 100%; }

.hero-section h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-section > .container > .row > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 0;
    max-width: 560px;
    margin: 0 auto 0;
}

/* hero eyebrow tag */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,133,42,0.2);
    border: 1px solid rgba(200,133,42,0.4);
    color: var(--amber2);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

/* ── SEARCH FORM ── */
.form-container {
    margin-top: 48px;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.single-form-container {
    border-radius: 6px 0 0 6px;
    overflow: hidden;
    flex-wrap: nowrap;
    box-shadow: var(--shadow-lg);
}

.single-form {
    gap: 8px;
    align-items: center;
    padding: 0 20px;
    height: 64px;
    background-color: var(--white);
    border-right: 1px solid var(--stone);
    min-width: 240px;
}

.single-form p {
    color: var(--forest);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.single-form input {
    border: none;
    outline: none;
    width: 220px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    background: transparent;
}

.single-form input::placeholder { color: var(--muted); }

.single-form i {
    color: var(--muted);
    font-size: 1rem;
}

.single-button {
    background-color: var(--amber);
    border: none;
    height: 64px;
    padding: 0 36px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    transition: background .3s;
    letter-spacing: 0.03em;
}

.single-button:hover { background-color: #b5751f; }

/* ── FEATURED CATEGORY PILLS ── */
.featured-section {
    background: var(--forest);
    padding: 0 20px;
}

.translate {
    transform: none;
    z-index: 2;
    position: relative;
    flex-wrap: wrap;
    padding: 32px 0;
    gap: 12px;
}

.box {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    align-items: center;
    padding: 20px 28px;
    min-width: 160px;
    border-radius: 8px;
    transition: .3s ease;
    cursor: pointer;
    color: rgba(255,255,255,0.8);
}

.box i {
    color: var(--amber2);
    margin-bottom: 4px;
}

.box h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin: 8px 0 4px;
}

.box p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
}

.box:hover {
    background: var(--amber);
    border-color: var(--amber);
    transform: translateY(-2px);
}

.box:hover i,
.box:hover h3,
.box:hover p { color: white !important; }

/* ── SECTION SHARED ── */
.section { padding: 100px 0; }

.section-title { margin-bottom: 52px; }

.section-title h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-title p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto;
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--sand); }

.box-2 {
    max-width: 320px;
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: 12px;
    padding: 44px 32px;
    margin: 10px;
    transition: .3s ease;
    box-shadow: 0 2px 12px rgba(15,31,24,0.06);
}

.box-2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage);
}

.icon {
    background: rgba(74,124,89,0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 24px;
    color: var(--sage);
    transition: .3s ease;
}

.box-2:hover .icon {
    background: var(--amber);
    color: white;
}

.box-2 h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--forest);
    margin-bottom: 14px;
    font-weight: 600;
}

.box-2 p {
    font-size: 0.87rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 24px;
}

.rect-link {
    display: inline-block;
    padding: 8px 20px;
    border: 1.5px solid var(--sage);
    border-radius: 4px;
    color: var(--sage);
    font-size: 0.82rem;
    font-weight: 500;
    transition: .3s ease;
}

.rect-link:hover {
    background: var(--sage);
    color: white;
    border-color: var(--sage);
}

/* ── EXPLORE CARDS ── */
.explore-section { background: var(--cream); }

.col { gap: 0; }

.card {
    background-color: var(--white);
    flex: 0 0 calc(33.333% - 20px);
    border-radius: 12px;
    border: 1px solid var(--stone);
    margin: 10px;
    transition: .3s ease;
    max-width: calc(33.333% - 20px);
    min-width: 280px;
    overflow: hidden;
}

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

.thumbnail {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.absolute {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    padding: 10px 14px;
    opacity: 0;
    transition: .4s ease;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.card:hover .absolute {
    transform: none;
    opacity: 1;
}

.best {
    color: white !important;
    background-color: var(--amber);
    padding: 4px 10px;
    border-radius: 4px;
    height: fit-content;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ex-actions { gap: 8px; }

.ex-actions i {
    background-color: rgba(0,0,0,0.5);
    padding: 8px;
    color: white;
    transition: .3s ease;
    font-size: 11px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.ex-actions i:hover { background-color: var(--amber); }

.content { padding: 20px; }

.content h3 {
    font-size: 1.05rem;
    color: var(--forest);
    margin-bottom: 10px;
    font-weight: 700;
}

.rating {
    background-color: var(--forest);
    padding: 2px 7px;
    border-radius: 4px;
    color: white !important;
    font-size: 0.78rem;
    font-weight: 600;
}

.ex-decript {
    gap: 12px;
    margin: 10px 0 14px;
    flex-wrap: wrap;
}

.rate { gap: 6px; }

.card p { font-size: 0.82rem; color: var(--muted); }

.txt {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--body);
    margin-bottom: 14px;
}

.card hr {
    margin: 14px 0;
    border: none;
    border-top: 1px solid var(--stone);
}

.diss {
    font-size: 1rem;
    margin-top: 10px;
    color: var(--muted);
}

.diss i { transition: .3s ease; cursor: pointer; }
.diss i:hover { color: var(--amber); }

/* ── TESTIMONIALS ── */
.client-section {
    background: var(--forest);
    padding: 100px 0;
}

.client-section .section-title h3 { color: var(--white); }
.client-section .section-title p  { color: rgba(255,255,255,0.5); }

.testimonial-container {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slider { transition: .6s ease; }

.testimonial {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    min-width: 100%;
    padding: 44px 40px;
    color: white;
    gap: 16px;
}

.pad { padding: 16px; min-width: 100%; }

.img-box {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--amber);
}

.img-box img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center;
}

.testimonial h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber2);
    letter-spacing: 0.03em;
}

.testimonial p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    font-style: italic;
}

.dot-container { gap: 8px; margin-top: 32px; }

.dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: .3s ease;
}

.dot.active {
    background-color: var(--amber);
    width: 24px;
    border-radius: 4px;
}

.next, .prev { display: none; }

/* ── COUNTER ── */
.counter {
    padding: 120px 40px;
    background-position: center;
    background-image: url('../img/counter-banner.jpg');
    background-size: cover;
    color: white;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.counter::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    z-index: -1;
    left: 0;
    background: linear-gradient(135deg, rgba(26,58,42,0.88), rgba(10,25,18,0.75));
}

.counter .flex { gap: 60px; flex-wrap: wrap; }

.counter h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--amber2);
    margin-bottom: 6px;
}

.counter p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── BLOG ── */
.blog-section { background: var(--sand); }

.news { padding: 24px; }

.news a.title {
    display: block;
    color: var(--forest);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color .3s;
}

.card:hover .news a.title { color: var(--amber); }

.news .flex { gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }

.news p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

.posted { color: var(--muted) !important; font-size: 0.78rem; }

.black { color: var(--forest) !important; font-weight: 500; }
.black:hover { color: var(--amber) !important; }

/* ── CONTACT / CTA ── */
.contact-section {
    background: var(--forest2);
    padding: 120px 20px;
}

.contact-section .section-title h3 { color: var(--white); }
.contact-section .section-title p  { color: rgba(255,255,255,0.55); max-width: 520px; }

.newsletter { margin-top: 16px; }

form {
    transition: .3s ease;
    width: fit-content;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
}

form input {
    border: 0;
    outline: 0;
    padding: 18px 24px;
    width: 360px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: .3s ease;
}

form input::placeholder { color: rgba(255,255,255,0.4); }
form input:focus { background: rgba(255,255,255,0.15); }

form button {
    color: var(--ink);
    background-color: var(--amber2);
    border: none;
    padding: 18px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
    white-space: nowrap;
}

form button:hover { background-color: var(--amber); color: white; }

/* ── FOOTER ── */
.footer {
    padding: 40px 40px 0;
    background: var(--ink);
}

.footer h2 {
    font-size: 1.5rem;
    color: white;
}

.links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: color .3s;
}

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

.footer hr {
    margin-top: 32px;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer {
    font-size: 0.78rem;
    padding: 24px 0;
    background: var(--ink);
    color: rgba(255,255,255,0.35);
}

footer a { color: rgba(255,255,255,0.55); }
footer a:hover { color: var(--amber2); }

.copyright { color: rgba(255,255,255,0.35); }
.copyright a { color: var(--amber2); font-weight: 500; }

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

.social {
    display: flex;
    height: 38px;
    width: 38px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social:hover {
    background: var(--amber);
    color: white;
    border-color: var(--amber);
}

/* ── SCROLL REVEAL ANIMATION ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-section .row { animation: fadeUp .8s ease both; }
