@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --primary-color: #EE7738;
  --secondary-color: #D35400;
  --accent-color: #F59D2A;
  --light-color: #FFF5EE;
  --dark-color: #1A0A00;
  --gradient-primary: linear-gradient(135deg, #F59D2A 0%, #EE7738 100%);
  --hover-color: #C9601A;
  --background-color: #FFFBF7;
  --text-color: #3D2B1F;
  --border-color: rgba(238, 119, 56, 0.22);
  --divider-color: rgba(211, 84, 0, 0.12);
  --shadow-color: rgba(211, 84, 0, 0.1);
  --highlight-color: #2980B9;
  --main-font: 'Raleway', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--alt-font); background: var(--background-color); color: var(--text-color); line-height: 1.75; }

/* ─── HEADER ─── */
header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--dark-color);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 70px;
  box-shadow: 0 3px 18px rgba(0,0,0,.45);
}
.logo a { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.logo img { height: 44px; width: auto; }
.logo span { font-family: var(--main-font); font-size: 1.2rem; color: #fff; font-weight: 700; }
.navigation ul { list-style: none; display: flex; gap: 1.6rem; }
.navigation a { color: rgba(255,255,255,.85); text-decoration: none; font-family: var(--main-font); font-size: .92rem; font-weight: 600; letter-spacing: .04em; transition: color .2s; }
.navigation a:hover { color: var(--accent-color); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: .3s; }
#nav-toggle2 { display: none; }

@media (max-width: 768px) {
  header { flex-wrap: wrap; padding: .75rem 1rem; justify-content: center; }
  .logo { order: 0; flex: 1 1 100%; display: flex; justify-content: center; margin-bottom: .4rem; }
  .hamburger { display: flex; position: absolute; right: 1rem; top: 1.1rem; }
  .navigation { display: none; flex: 1 1 100%; }
  #nav-toggle2:checked ~ .navigation { display: block; }
  .navigation ul { flex-direction: column; gap: 0; }
  .navigation li a { display: block; padding: .6rem 1rem; border-bottom: 1px solid rgba(255,255,255,.07); }
  #nav-toggle2:checked ~ .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  #nav-toggle2:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  #nav-toggle2:checked ~ .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ─── HERO ─── */
.hero {
  min-height: 65vh;
  background: linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)), url('./img/bg.jpg') no-repeat center center/cover;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 1.5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(238,119,56,.2) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { font-family: var(--main-font); color: #fff; font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.2rem; }
.hero p { color: rgba(255,255,255,.9); font-size: clamp(.97rem,2.2vw,1.2rem); margin-bottom: 2rem; }
.btn-hero {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff; font-family: var(--main-font); font-weight: 700;
  padding: .9rem 2.5rem; border-radius: 6px;
  text-decoration: none; font-size: 1rem; letter-spacing: .04em;
  box-shadow: 0 8px 24px rgba(238,119,56,.45);
  transition: transform .25s, box-shadow .25s;
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(238,119,56,.5); }

/* ─── SECTIONS ─── */
section { padding-top: 10dvh; padding-bottom: 10dvh; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section-label {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff; font-family: var(--main-font); font-weight: 700;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .28rem .85rem; border-radius: 4px; margin-bottom: 1rem;
}
.section-title { font-family: var(--main-font); font-size: clamp(1.55rem,3.5vw,2.3rem); color: var(--dark-color); line-height: 1.25; margin-bottom: .9rem; font-weight: 800; }
.section-sub { color: var(--text-color); font-size: 1.03rem; max-width: 640px; }

/* ─── CONTENT 1 ─── */
.content1 { background: var(--background-color); }
.content1-grid { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.content1-img { flex: 0 0 40%; max-width: 40%; }
.content1-img img { width: 100%; border-radius: 12px; box-shadow: 6px 10px 30px var(--shadow-color); display: block; }
.content1-text { flex: 1; min-width: 270px; }
.content1-text p { margin-bottom: 1rem; }
.highlight-box {
  background: var(--light-color); border-left: 4px solid var(--primary-color);
  border-radius: 0 10px 10px 0; padding: 1rem 1.25rem; margin-top: 1rem;
  box-shadow: 2px 4px 12px var(--shadow-color);
}
.highlight-box p { margin: 0; font-style: italic; color: var(--secondary-color); font-weight: 600; }
@media (max-width: 768px) { .content1-img { flex: 0 0 100%; max-width: 100%; } }

/* ─── DIVIDER ─── */
.divider-section { padding: 2.5rem 0; }
.divider-inner { display: flex; align-items: center; gap: 1.2rem; }
.divider-line { flex: 1; height: 1px; background: var(--border-color); }
.divider-text { font-family: var(--main-font); font-weight: 700; color: var(--primary-color); font-size: .98rem; text-align: center; letter-spacing: .03em; }
@media (max-width: 600px) { .divider-text { font-size: .85rem; } }

/* ─── CTA 1 ─── */
.cta1 {
  background: linear-gradient(rgba(0,0,0,.56),rgba(0,0,0,.56)), url('./img/bg.jpg') no-repeat center center/cover;
  background-attachment: fixed; text-align: center;
}
.cta1 h2 { font-family: var(--main-font); font-size: clamp(1.7rem,4vw,2.8rem); color: #fff; margin-bottom: 1rem; font-weight: 800; }
.cta1 p { color: rgba(255,255,255,.88); font-size: 1.12rem; margin-bottom: 2rem; }
.btn-cta {
  display: inline-block; background: var(--highlight-color);
  color: #fff; font-family: var(--main-font); font-weight: 700;
  padding: .88rem 2.4rem; border-radius: 6px; text-decoration: none;
  font-size: 1rem; letter-spacing: .04em;
  box-shadow: 0 6px 20px rgba(41,128,185,.4);
  transition: transform .25s, box-shadow .25s;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(41,128,185,.5); }

/* ─── FEATURES ─── */
.features { background: #FFF8F2; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.75rem; margin-top: 3rem; position: relative;
}
/* Timeline connector */
.features-grid::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: var(--border-color); z-index: 0;
}
.feature-item {
  background: #fff;
  border: 1.5px solid var(--border-color); border-radius: 12px;
  padding: 2rem 1.5rem; position: relative; z-index: 1;
  box-shadow: 4px 6px 20px var(--shadow-color), -2px -2px 8px rgba(255,255,255,.8);
  transition: transform .3s, box-shadow .3s;
}
.feature-item:hover { transform: translateY(-6px); box-shadow: 6px 14px 32px var(--shadow-color); }
.feature-icon { font-size: 2.2rem; color: var(--primary-color); margin-bottom: .75rem; }
.feature-item h3 { font-family: var(--main-font); font-size: 1.1rem; color: var(--dark-color); margin-bottom: .5rem; font-weight: 700; }
.feature-item p { font-size: .96rem; line-height: 1.7; }
.feat-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-primary); color: #fff;
  font-family: var(--main-font); font-size: .78rem; font-weight: 700;
  padding: .2rem .7rem; border-radius: 20px; white-space: nowrap;
}

/* ─── CONTENT 2 ─── */
.content2 { background: var(--background-color); }
.content2-grid { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.content2-img { flex: 0 0 50%; max-width: 50%; }
.content2-img img { width: 100%; border-radius: 12px; box-shadow: 6px 10px 30px var(--shadow-color); display: block; }
.content2-text { flex: 1; min-width: 270px; }
.content2-text p { margin-bottom: 1rem; }
@media (max-width: 768px) { .content2-img { flex: 0 0 100%; max-width: 100%; } }

/* ─── CTA 2 ─── */
.cta2 {
  background: linear-gradient(rgba(0,0,0,.56),rgba(0,0,0,.56)), url('./img/bg.jpg') no-repeat center/cover;
  background-attachment: fixed; text-align: center;
}
.cta2 h2 { font-family: var(--main-font); font-size: clamp(1.7rem,4vw,2.8rem); color: #fff; margin-bottom: 1rem; font-weight: 800; }
.cta2 p { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 2rem; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--light-color); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.75rem; margin-top: 2.5rem; }
.testimonial-card {
  background: #fff; border: 1.5px solid var(--border-color); border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 4px 6px 18px var(--shadow-color);
  position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-size: 4rem; font-family: Georgia, serif;
  color: var(--primary-color); opacity: .18;
  position: absolute; top: .5rem; left: 1rem; line-height: 1;
}
.testimonial-stars { color: var(--primary-color); margin-bottom: .75rem; }
.testimonial-text { font-size: .96rem; font-style: italic; line-height: 1.75; margin-bottom: 1rem; }
.testimonial-author { font-family: var(--main-font); font-size: .88rem; color: var(--secondary-color); font-weight: 700; }

/* ─── FORM SECTION ─── */
.form-section { background: var(--dark-color); }
.form-section .section-label { background: var(--gradient-primary); }
.form-section .section-title { color: #fff; }
.form-section .section-sub { color: rgba(255,255,255,.8); }
.form-cta-card {
  max-width: 560px; margin: 2rem auto 0;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px; padding: 2.5rem; text-align: center;
}
.form-cta-card p { color: rgba(255,255,255,.88); margin-bottom: 1.5rem; }

/* ─── CONTACT ─── */
.contact { background: var(--background-color); }
.contact-grid { display: flex; gap: 3rem; flex-wrap: wrap; }
.contact-info { flex: 0 0 36%; min-width: 240px; }
.contact-info h3 { font-family: var(--main-font); font-size: 1.35rem; color: var(--dark-color); margin-bottom: 1.2rem; font-weight: 800; }
.contact-detail { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.contact-detail i { color: var(--primary-color); margin-top: .25rem; flex-shrink: 0; }
.contact-form-wrap { flex: 1; min-width: 270px; }
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-group { flex: 1; min-width: 200px; margin-bottom: 1.2rem; }
.form-group label { display: block; font-family: var(--main-font); font-size: .86rem; font-weight: 700; color: var(--dark-color); margin-bottom: .4rem; letter-spacing: .03em; }
.form-control {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--border-color); border-radius: 8px;
  font-family: var(--alt-font); font-size: .96rem;
  background: #fff; color: var(--text-color);
  box-shadow: inset 2px 2px 6px var(--shadow-color);
  transition: border-color .25s, box-shadow .25s; outline: none;
}
.form-control:focus { border-color: var(--primary-color); box-shadow: inset 2px 2px 6px var(--shadow-color), 0 0 0 3px rgba(238,119,56,.15); }
textarea.form-control { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; background: var(--gradient-primary);
  color: #fff; font-family: var(--main-font); font-weight: 700;
  font-size: 1rem; letter-spacing: .05em; padding: .9rem 1.5rem;
  border: none; border-radius: 8px; cursor: pointer;
  box-shadow: 0 6px 20px rgba(238,119,56,.35);
  transition: transform .25s, box-shadow .25s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(238,119,56,.45); }

/* ─── FAQ ─── */
.faq { background: #FFF8F2; }
.faq-list { max-width: 780px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 1.2rem; }
.faq-item {
  background: #fff; border: 1.5px solid var(--border-color); border-radius: 12px;
  padding: 1.5rem 1.75rem;
  box-shadow: 3px 5px 16px var(--shadow-color), -1px -1px 6px rgba(255,255,255,.7);
  transition: box-shadow .3s, transform .3s;
}
.faq-item:hover { box-shadow: 5px 8px 24px var(--shadow-color); transform: translateX(4px); }
.faq-item h3 { font-family: var(--main-font); font-size: 1.02rem; color: var(--dark-color); margin-bottom: .7rem; font-weight: 700; display: flex; align-items: flex-start; gap: .55rem; }
.faq-item h3 i { color: var(--primary-color); flex-shrink: 0; margin-top: .22rem; }
.faq-item p { font-size: .96rem; line-height: 1.78; }

/* ─── FOOTER ─── */
footer { background: var(--dark-color); padding: 2rem; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
footer .logo img { height: 38px; }
footer nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; }
footer nav a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .87rem; transition: color .2s; }
footer nav a:hover { color: var(--accent-color); }
.footer-copy { width: 100%; text-align: center; color: rgba(255,255,255,.4); font-size: .78rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.07); margin-top: .5rem; }
.footer-copy a { color: rgba(255,255,255,.55); }
@media (max-width: 640px) { .footer-inner { flex-direction: column; align-items: center; text-align: center; } footer nav ul { justify-content: center; } }