/* ===========================
   SIMPLYSHIV IMMIGRATION INC.
   style.css
   =========================== */

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

:root {
  --cream: #faf8f4;
  --warm-white: #fff9f2;
  --rust: #c8553d;
  --rust-dark: #a8432d;
  --rust-light: #f0ede8;
  --maple: #e8562a;
  --dark: #1a1612;
  --mid: #4a3f35;
  --muted: #7a6e65;
  --border: #e8e0d8;
  --card-bg: #ffffff;
  --shadow: 0 4px 24px rgba(26,22,18,0.08);
  --shadow-lg: 0 12px 48px rgba(26,22,18,0.14);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--dark); line-height: 1.65; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--mid); }
a { text-decoration: none; color: inherit; }

/* ---- LAYOUT ---- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.alt-bg { background: var(--warm-white); }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--dark); display: flex; align-items: center; gap: 0.5rem;
}
.logo-icon { color: var(--rust); font-size: 1rem; }
.logo-sub { font-weight: 400; color: var(--muted); font-size: 0.9rem; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  padding: 0.45rem 0.9rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--mid);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--rust); background: var(--rust-light); }
.nav-cta {
  background: var(--rust) !important; color: #fff !important;
  padding: 0.5rem 1.1rem !important; border-radius: 50px !important;
}
.nav-cta:hover { background: var(--rust-dark) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: var(--transition);
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--border);
  z-index: 99; padding: 1rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu a {
  display: block; padding: 0.6rem 0.75rem; border-radius: var(--radius-sm);
  font-weight: 500; color: var(--mid);
}
.mobile-menu a:hover { color: var(--rust); background: var(--rust-light); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8rem 1.5rem 4rem; position: relative; overflow: hidden;
  text-align: center; gap: 3rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
}
.blob1 { width: 600px; height: 600px; background: var(--rust); top: -200px; right: -200px; }
.blob2 { width: 400px; height: 400px; background: #e8b14a; bottom: -100px; left: -100px; }
.maple-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8553d' fill-opacity='0.04'%3E%3Cpath d='M30 0l3 9h9l-7 5 3 9-8-6-8 6 3-9-7-5h9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
  display: inline-block; background: var(--rust-light);
  color: var(--rust); border: 1px solid #e0c8c0;
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero-title { margin-bottom: 1.25rem; }
.accent { color: var(--rust); }
.hero-sub {
  font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem;
  max-width: 500px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-card { position: relative; z-index: 1; }
.trust-card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.trust-divider { width: 1px; height: 40px; background: var(--border); }
.trust-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--rust); }
.trust-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; margin-top: 0.2rem; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block; background: var(--rust); color: #fff;
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.92rem; transition: var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--rust-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,85,61,0.3); }
.btn-secondary {
  display: inline-block; background: transparent; color: var(--dark);
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.92rem; transition: var(--transition);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--rust); color: var(--rust); }
.btn-white {
  display: inline-block; background: #fff; color: var(--rust);
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-weight: 700; font-size: 0.92rem; transition: var(--transition);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-full { width: 100%; text-align: center; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--rust);
  margin-bottom: 0.75rem;
}
.section-desc { color: var(--muted); margin-top: 0.75rem; }

/* ---- SERVICES PREVIEW GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  transition: var(--transition); display: block;
  position: relative; overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--rust);
}
.service-card.featured {
  background: var(--rust); color: white; border-color: var(--rust);
}
.service-card.featured p, .service-card.featured h3 { color: rgba(255,255,255,0.9); }
.service-card.featured .card-link { color: rgba(255,255,255,0.8); }
.service-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.5rem; color: var(--dark); }
.service-card.featured h3 { color: white; }
.service-card p { font-size: 0.88rem; line-height: 1.5; }
.card-link { display: block; margin-top: 1rem; font-size: 0.82rem; font-weight: 600; color: var(--rust); }

/* ---- WHY US ---- */
.why-us { background: var(--warm-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-text h2 { margin-bottom: 1rem; }
.why-text p { margin-bottom: 1.5rem; }
.why-list { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.why-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; font-weight: 500; }
.check { color: var(--rust); font-weight: 700; font-size: 1rem; }
.why-image { display: flex; justify-content: center; align-items: center; }
.why-card-stack { position: relative; width: 280px; height: 300px; }
.why-card-bg {
  position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
  background: var(--rust-light); border-radius: var(--radius); border: 1px solid var(--border);
}
.why-card-front {
  position: relative; z-index: 1; background: white;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 2rem; text-align: center;
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
}
.wc-icon { font-size: 3rem; }
.wc-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.wc-body { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--rust), var(--rust-dark));
  padding: 4.5rem 1.5rem; text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); color: white; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--warm-white); padding: 7rem 1.5rem 3.5rem;
  border-bottom: 1px solid var(--border); text-align: center;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--muted); font-size: 1.05rem; }

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1.25rem; }
.about-card-wrap { position: relative; width: 260px; height: 310px; margin: 0 auto; }
.about-card-accent {
  position: absolute; top: 20px; left: -20px; right: 20px; bottom: -20px;
  background: var(--rust); border-radius: var(--radius); opacity: 0.15;
}
.about-main-card {
  position: relative; z-index: 1; background: white;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 2rem; text-align: center; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
}
.about-avatar {
  width: 64px; height: 64px; background: var(--rust-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--rust); margin-bottom: 0.5rem;
}
.about-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; line-height: 1.3; }
.about-role { font-size: 0.78rem; color: var(--muted); }
.about-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }
.badge {
  background: var(--rust-light); color: var(--rust);
  padding: 0.25rem 0.6rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600;
}
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.value-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.value-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; }
.disclaimer-box {
  background: var(--rust-light); border: 1px solid #e0c8c0;
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  font-size: 0.85rem;
}
.disclaimer-box p { color: var(--mid); }

/* ---- SERVICES DETAIL ---- */
.service-detail-card {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2rem; align-items: start;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  margin-bottom: 1.5rem; transition: var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow); }
.service-detail-card.reverse { grid-template-columns: 80px 1fr; }
.sdc-icon { font-size: 2.5rem; padding-top: 0.25rem; }
.sdc-content h2 { margin-bottom: 0.75rem; }
.sdc-content p { margin-bottom: 1rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
.service-list li { padding: 0.35rem 0; padding-left: 1.25rem; position: relative; font-size: 0.9rem; color: var(--mid); }
.service-list li::before { content: "→"; position: absolute; left: 0; color: var(--rust); font-weight: 700; }

/* ---- FAQ ---- */
.faq-container { max-width: 780px; margin: 0 auto; }
.faq-group { margin-bottom: 3rem; }
.faq-group-title {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--rust); margin-bottom: 1rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--rust-light);
}
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.6rem; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.25rem; background: white; border: none;
  cursor: pointer; text-align: left; font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 600; color: var(--dark);
  transition: var(--transition);
}
.faq-question:hover { background: var(--rust-light); color: var(--rust); }
.faq-question[aria-expanded="true"] { background: var(--rust); color: white; }
.faq-arrow { font-size: 1.2rem; font-weight: 300; flex-shrink: 0; margin-left: 1rem; transition: var(--transition); }
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  background: white;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 1rem 1.25rem 1.25rem; font-size: 0.9rem; line-height: 1.7; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.cd-icon { font-size: 1.2rem; margin-top: 0.1rem; }
.contact-detail strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.contact-detail p { font-size: 0.88rem; }
.contact-detail a { color: var(--rust); }
.contact-form-wrap {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--dark);
  background: var(--cream); transition: var(--transition); resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--rust); background: white; }
.form-note { font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; text-align: center; }
.form-success { text-align: center; padding: 2rem; }
.success-icon {
  width: 60px; height: 60px; background: #4caf50; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; margin: 0 auto 1rem;
}
.form-success h3 { margin-bottom: 0.5rem; }

/* ---- FOOTER ---- */
.footer { background: var(--dark); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .logo-icon { color: var(--rust); font-size: 1.2rem; }
.footer-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: white; display: inline-block; margin-left: 0.4rem; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-links h4, .footer-contact h4 { color: white; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--rust); }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact a:hover { color: var(--rust); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem; text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ---- ANIMATIONS ---- */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease forwards 0.2s; }
.fade-in-delay { opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease forwards 0.5s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-image { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .trust-card { flex-direction: column; gap: 1rem; }
  .trust-divider { width: 40px; height: 1px; }
  .service-detail-card { grid-template-columns: 1fr; gap: 1rem; }
  .sdc-icon { font-size: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}
