/* ===============================
   ROOT COLORS
================================ */
:root {
  --bg-main: #0b0b0f;
  --bg-card: #141421;
  --accent: #f5c26b;
  --text-main: #ffffff;
  --text-soft: #cfcfd8;
  --text-muted: #9a9ab0;
}
.profile-img {
  max-width: 260px;
  border-radius: 18px;
  border: 2px solid rgba(245, 194, 107, 0.4);
}
/* TESTIMONIAL CARD FIX */
.card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.trust-img {
  display: block;
  margin: 30px auto;
  max-width: 380px;   /* BIGGER */
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.65);
  border: 1px solid rgba(245,194,107,0.35);
  cursor: zoom-in;
}


/* ===============================
   RESET & GLOBAL
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-soft);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===============================
   LAYOUT
================================ */
section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

/* ===============================
   TYPOGRAPHY
================================ */
h1, h2, h3 {
  color: var(--text-main);
  font-weight: 700;
}

h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  color: var(--text-soft);
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

.hero span {
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

/* ===============================
   BUTTONS
================================ */
.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #f5c26b, #e3a93f);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 194, 107, 0.4);
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: #000;
}

/* ===============================
   CARDS
================================ */
.card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* ===============================
   GRID SYSTEM
================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.service-title {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ===============================
   TRUST / CERTIFICATES
================================ */
.trust-img {
  max-width: 180px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 15px;
}

/* ===============================
   CONTACT SECTION
================================ */
.contact-box {
  text-align: center;
  background: linear-gradient(180deg, #141421, #0b0b0f);
  border-radius: 20px;
  padding: 60px 20px;
}

.contact-box p {
  margin-bottom: 25px;
}

/* ===============================
   FOOTER
================================ */
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===============================
   RESPONSIVE
================================ */
@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1.2fr 0.8fr;
    text-align: left;
    align-items: center;
  }

  .hero-buttons {
    justify-content: flex-start;
  }
}
