@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --green: #1a6b3c;
    --green-light: #2f9e44;
    --gold: #c9a84c;
    --cream: #f7f3ec;
    --dark: #0e1a14;
    --grey: #6b7280;
    --white: #ffffff;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
}

body {
    background-color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
}

/* ── NAVBAR ── */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(10, 22, 15, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

/* ── TXT + IMG BLOCK (hero intro) ── */
.txtimg-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 100px 8%;
    background: var(--cream);
}

.data-block {
    flex: 1;
    max-width: 50%;
}

.data-block h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--dark);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 24px;
}

.data-block h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--gold));
}

.data-block p {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--grey);
    max-width: 90%;
}

.txtimg-block img {
    flex: 1;
    width: 46%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(14, 26, 20, 0.14);
}

/* ── REFER PANEL (three image tiles) ── */
.refer-panel {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 8% 100px;
    background: var(--cream);
}

.img-box {
    position: relative;
    flex: 1;
    height: 340px;
    overflow: hidden;
    border-radius: 4px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10,22,15,0.82) 0%, rgba(10,22,15,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.img-box:hover img {
    transform: scale(1.06);
}

.img-box:hover .overlay {
    opacity: 1;
}

.img-box:hover .overlay h2 {
    transform: translateY(0);
}

/* ── IMG + TXT BLOCK (reversed) ── */
.imgtxt-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 8% 100px;
    background: var(--white);
}

.imgtxt-block img {
    flex: 1;
    width: 46%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(14, 26, 20, 0.12);
}

.imgtxt-block .data-block {
    max-width: 50%;
}

/* ── CONCLUSION ── */
.Conclusion {
    padding: 100px 8%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.Conclusion h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
    max-width: 700px;
}

.Conclusion p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 680px;
    border-left: 2px solid var(--gold);
    padding-left: 24px;
    text-align: left;
}

/* ── FOOTER ── */
.footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 8% 60px;
    gap: 48px;
}

.footer-column {
    max-width: 280px;
}

.footer-column h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--white);
}

.footer-column h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-column p {
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    font-size: 14px;
    font-weight: 300;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.footer-social a {
    color: rgba(255,255,255,0.5);
    margin-right: 16px;
    font-size: 18px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .data-block h1 { font-size: 40px; }
    .txtimg-block img, .imgtxt-block img { height: 340px; }
    .refer-panel { gap: 14px; }
    .img-box { height: 280px; }
}

@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 14px; padding: 0 16px; }
    .nav-links { flex-direction: column; gap: 12px; align-items: center; padding: 0; }
    .logo { font-size: 18px; text-align: center; }

    .txtimg-block, .imgtxt-block {
        flex-direction: column;
        padding: 60px 6%;
        gap: 36px;
    }

    .data-block, .imgtxt-block .data-block { max-width: 100%; }
    .data-block h1 { font-size: 32px; }
    .data-block p { font-size: 16px; max-width: 100%; }

    .txtimg-block img, .imgtxt-block img {
        width: 100%;
        height: 260px;
    }

    .refer-panel {
        flex-direction: column;
        padding: 0 6% 70px;
        gap: 16px;
    }

    .img-box { height: 220px; }
    .overlay { opacity: 1; }
    .overlay h2 { transform: translateY(0); font-size: 18px; }
    .img-box:hover img { transform: none; }

    .Conclusion { padding: 70px 6%; }
    .Conclusion h1 { font-size: 30px; }
    .Conclusion p { font-size: 18px; }

    .footer-container { flex-direction: column; align-items: center; text-align: center; }
    .footer-column { max-width: 90%; }
}

@media (max-width: 480px) {
    .data-block h1 { font-size: 26px; }
    .Conclusion h1 { font-size: 24px; }
    .Conclusion p { font-size: 16px; border-left: none; padding-left: 0; text-align: center; }
}
/* ── CONTACT SECTION ── */
.contact-section {
    padding: 90px 8%;
    background: var(--green);
}

.contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.contact-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    max-width: 520px;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: var(--white);
    color: var(--green);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.contact-cta:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-text h2 { font-size: 30px; }
    .contact-text p { font-size: 15px; }
    .contact-cta { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .contact-section { padding: 70px 6%; }
    .contact-text h2 { font-size: 26px; }
}
/* ── Why Us ─────────────────────────────── */
.why-us {
  padding: 4rem 2rem;
  background: #f5f5f0;
}
.why-us h2 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 0.5rem;
}
.why-us .section-sub {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin: 0 0 2.5rem;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.why-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
}
.why-card i {
  font-size: 24px;
  color: #1d9e75;
  margin-bottom: 12px;
  display: block;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 8px;
}
.why-card p {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ── How It Works ────────────────────────── */
.how-it-works {
  padding: 4rem 2rem;
}
.how-it-works h2 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 0.5rem;
}
.how-it-works .section-sub {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin: 0 0 2.5rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
}
.step {
  padding: 2rem 1.5rem;
  border-right: 1px solid #e8e8e8;
}
.step:last-child {
  border-right: none;
}
.step-num {
  font-size: 0.75rem;
  font-weight: 500;
  color: #1d9e75;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 8px;
}
.step p {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}