/* ========== Design System ========== */
:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #666;
  --primary: #0f172a;         /* dark navy */
  --brand:  #ff6a3d;           /* neon lime */
  --accent:  #ff6a3d;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.07);
  --radius: 20px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth;}
body{
  margin:0; background:var(--bg); color:var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
}
img{ max-width:100%; display:block; }

.container{ width:min(1200px, 92%); margin-inline:auto; }
.section{ padding: clamp(56px, 8vw, 96px) 0; }

h1,h2,h3{ line-height:1.15; font-weight:800; letter-spacing:-0.02em; }
h1{ font-size: clamp(36px, 6vw, 64px); font-family: "Gloock", serif; }
h2{ font-size: clamp(28px, 4.5vw, 40px); }
h3{ font-size: clamp(20px, 3vw, 24px); }
p{ color: var(--primary); font-weight: 400; }

.highlight{
  color: #ff6a3d;
  text-shadow: 0 10px 30px rgba(255,106,61,.25);
}

.btn{
  display:inline-flex; align-items:center; gap:.6rem;
  padding:.95rem 1.25rem; border-radius: 999px;
  border:1px solid transparent; font-weight:700; text-decoration:none;
  transition:.25s ease; cursor:pointer;
}
.btn-primary{ background:#111; color:#fff; }
.btn-primary:hover{ transform: translateY(-2px); box-shadow:var(--shadow); }
.btn-ghost{ border-color:#e3e3e3; color:#111; }
.btn-ghost:hover{ background:#f5f5f5; }
.btn-dark{ background:#ff6a3d; color:#fff; }
.btn-accent{ background: var(--brand); color:#111; font-weight:800; }
.btn-accent:hover{ filter: saturate(1.1); }

/* ========== Header ========== */
.header{
  position:sticky; top:0; z-index:1000; backdrop-filter:saturate(1.2) blur(6px);
  background: rgba(255,255,255,.7); border-bottom:1px solid rgba(0,0,0,.06);
}
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding:.8rem 0; }
.logo{ display:flex; align-items:center; gap:.7rem; text-decoration:none; color:inherit; font-weight:800; }
.logo-mark{ display:grid; place-items:center; width:36px; height:36px; border-radius:50%; background:var(--brand); }
.logo.-inverse .logo-mark{ background:#fff; }
.logo-text b{ font-weight:900; }

.nav{ display:flex; align-items:center; gap:1.5rem; }
.nav a{ text-decoration:none; color:#333; font-weight:600; }
.nav a:hover{ color:#111; }
.nav .nav-link.active{ position:relative; }
.nav .nav-link.active::after{
  content:''; position:absolute; left:0; right:0; bottom:-10px; height:2px; background:#ff6a3d; border-radius:2px;
}
.section {
  scroll-margin-top: 90px; /* adjust this to match your navbar height */
}
html {
  scroll-behavior: smooth;
}
.section {
  padding-top: 90px;
  margin-top: -90px;
}


/* Hamburger */
.hamburger{ display:none; width:44px; height:44px; border:0; background:#111; color:#fff; border-radius:12px; align-items:center; justify-content:center; gap:5px; flex-direction:column; }
.hamburger span{ width:22px; height:2px; background:#fff; transition:.2s; border-radius:1px; }
.hamburger[aria-expanded='true'] span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.hamburger[aria-expanded='true'] span:nth-child(2){ opacity:0; }
.hamburger[aria-expanded='true'] span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

@media (max-width: 920px){
  .hamburger{ display:flex; }
  .nav{ position:fixed; inset:64px 0 auto 0; background:#fff; padding:1rem; border-bottom:1px solid #eee; transform:translateY(-120%); transition:.3s; flex-wrap:wrap; justify-content:center; gap:1rem; }
  .nav.open{ transform:translateY(0); }
  .nav .nav-cta{ width:100%; text-align:center; }
}

/* ========== Hero ========== */
.hero{ padding-top: 32px; }
.hero-grid{ display:grid; grid-template-columns: 1.1fr .9fr; align-items:center; gap: clamp(24px, 4vw, 56px); }
.eyebrow{ font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:#6b7280; font-size:.85rem;}
.sub{ color:#404040; max-width:56ch; }
.hero-art{ position:relative; }
.hero-art img{ width:100%; max-width:560px; margin-inline:auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,.15)); }
.bubble.hire{
  position:absolute; right:0; top:0; transform: translate(40%, -40%);
  background:#000; color:#fff; font-weight:900; padding:26px 22px; border-radius:999px;
}
.marquee{ overflow:hidden; border-top:1px solid #eee; border-bottom:1px solid #eee; background:#fafafa;}
.marquee-track{ display:flex; gap:18px; padding:12px 0; white-space:nowrap; animation: scroll 26s linear infinite; font-weight:700; color:#1f2937; }
.marquee i{ opacity:.4; }
@keyframes scroll{
  0% { transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

@media (max-width: 960px){
  .hero-grid{ grid-template-columns: 1fr; padding-top: 12px;}
  .bubble.hire{ transform: translate(20%, -40%); }
}

/* ========== Services ========== */
.section-head{ text-align:center; margin-bottom: clamp(24px, 3vw, 36px); }
.section-head p{ color:#666; max-width:60ch; margin: 10px auto 0; }
.cards{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
.card{
  background:var(--card); border-radius: var(--radius); padding:28px; box-shadow: var(--shadow); transition:.25s;
  display:flex; flex-direction:column; gap:10px;
}
.card:hover{ transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,.1); }
.card .icon{ font-size:28px; width:48px; height:48px; display:grid; place-items:center; border-radius:14px; background:#f5f5f5; }
.card .arrow{ margin-top:auto; text-decoration:none; font-weight:700; color:#0f172a; }
@media (max-width: 980px){ .cards{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .cards{ grid-template-columns: 1fr;} }

/* ========== Works ========== */
.work-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
.work{ border-radius:18px; overflow:hidden; box-shadow: var(--shadow); background:#000; }
.work img{ width:100%; height:240px; object-fit:cover; opacity:.9; transition:.25s; }
.work:hover img{ transform:scale(1.04); opacity:1; }
.work figcaption{ color:#fff; padding:12px 14px; font-weight:700; }

@media (max-width: 900px){ .work-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .work-grid{ grid-template-columns: 1fr; } }

/* ========== About ========== */
.about-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items:center; }
.about-media img{ border-radius: 22px; box-shadow: var(--shadow); }
@media (max-width: 980px){ .about-grid{ grid-template-columns: 1fr; } }

/* ========== FAQ ========== */
.accordion{ max-width:900px; margin: 0 auto; display:grid; gap:14px; }
.item{ border:1px solid #eee; border-radius: 14px; overflow:hidden; }
.item-head{ width:100%; text-align:left; background:#fff; border:0; padding:16px 18px; font-weight:800; cursor:pointer;}
.item-body{ padding:0 18px; height:0; overflow:hidden; transition:.25s ease; color:#444; }
.item.open .item-body{ padding:16px 18px; height:auto; }

/* ========== Contact ========== */
.contact-grid{ display:grid; grid-template-columns: 1.15fr .85fr; gap:22px; align-items:start; }
.form-wrap h2{ margin-top:0; }
form label{ display:flex; flex-direction:column; gap:8px; font-weight:600; color:#111; }
input, textarea{
  width:100%; border:1px solid #eee; padding:14px 16px; border-radius:14px; font: inherit; background:#fff;
}
input:focus, textarea:focus{ outline:2px solid #d1fae5; border-color:#34d399; }
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
label.full{ grid-column: 1/-1; }
.form-note{ margin-top:10px; color:#065f46; font-weight:700; min-height:1.2em; }
.info{ display:grid; gap:14px; }
.info-card{ background: #ff6a3d; padding:24px; border-radius: 22px; color:#111; font-weight:700; }
.socials{ display:flex; gap:12px; margin-top:10px; }
.social{ width:44px; height:44px; display:grid; place-items:center; background:#111; color:#fff; border-radius:50%; }

@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}

/* ========== CTA Banner & Footer ========== */
.cta-banner{ background:#10120c; color:#fff; padding:64px 0; border-radius: 48px 48px 0 0; margin-top: 40px; }
.cta-inner{ text-align:center; }
.cta-inner h3{ font-size: clamp(26px,4vw,42px); margin:.2rem 0; }
.cta-inner p{ color:#b3b3b3; }
.footer{ background:#0b0d07; color:#e6e6e6; padding: 24px 0 12px; }
.foot-grid{ display:grid; grid-template-columns: 1.3fr .7fr; gap: 22px; align-items:start; }
.foot-brand p{ color:#c9c9c9; max-width:52ch; }
.foot-socials a{ margin-right:10px; color:#e6e6e6; }
.foot-bottom{ display:flex; align-items:center; justify-content:space-between; padding-top:14px; border-top:1px solid rgba(255,255,255,.08); }
.to-top{ display:inline-flex; width:42px; height:42px; border-radius:50%; align-items:center; justify-content:center; background:#171a12; color:#fff; text-decoration:none; }

@media (max-width: 800px){
  .cta-banner{ border-radius: 24px 24px 0 0; }
  .foot-grid{ grid-template-columns: 1fr; }
}

/* Utilities */
.section .highlight{ font-family: "Gloock", serif; }
.hero-actions{ display:flex; gap: 12px; flex-wrap:wrap; }
.trust span{ font-weight:800; }
.marquee {
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}

.marquee-track {
  display: flex;
  gap: 18px;
  padding: 12px 0;
  white-space: nowrap;
  font-weight: 700;
  color: #1f2937;

  /* animate */
  animation: scroll 26s linear infinite;
}

.marquee i {
  opacity: .4;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* move by half (since content is duplicated) */
}

.foot-socials {
  display: flex;
  gap: 18px; /* spacing between icons */
  margin-top: 14px;
}

.foot-socials a {
  color: #ffffff; /* white icons */
  font-size: 22px; /* slightly bigger */
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.foot-socials a:hover {
  color: #ff6a3d; /* brand orange on hover */
  transform: translateY(-2px);
}
.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;   /* circle background */
  color: #fff;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  
  /* remove underline/borders */
  text-decoration: none !important;
  border: none !important;
}

.socials a i {
  font-size: 20px; /* adjust icon size */
  line-height: 1;
}

/* hover style */
.socials a:hover {
  background: #ff6a3d; /* your brand color */
  transform: translateY(-2px);
}

/* EMAIL + PHONE (only the two <p> lines) */
.footer .foot-contact > p {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.footer .foot-contact > p > i {
  font-size: 18px;
  color: #f2efef;   /* brand color ONLY for contact icons */
  flex: 0 0 auto;
}
.footer .foot-contact > p > a {
  color: #fff;
  text-decoration: none;
}
.footer .foot-contact > p > a:hover {
  color: #ff6a3d;
}

/* keep socials untouched (optional guard) */
.footer .foot-contact .foot-socials a { text-decoration: none; }
.footer .foot-contact .foot-socials i { color: #fff; }
.services-section {
  text-align: center;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.services-section .section-title {
  font-size: 32px;
  font-weight: 700;
}

.services-section .section-title span {
  color: #ff5722; /* highlight color */
}

.services-section .section-subtitle {
  color: #777;
  margin-bottom: 40px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 15px 0;
}

.service-card p {
  color: #444;
  margin-bottom: 15px;
}

.service-card a {
  font-weight: 700;
  color: #000;
  text-decoration: none;
}
.plans .card {
  text-align: center;
  padding: 2rem;
}

.plans .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff4d6d;
  margin: 1rem 0;
}

.plans .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #ff4d6d;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.plans .btn:hover {
  background: #e13c5b;
}
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 1rem;
}

.plans .card {
  position: relative;
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

/* Animated gradient border */
.plans .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #ff4d6d, #ff7b92, #ffb3c1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.plans .card:hover::before {
  opacity: 1;
}

.plans .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Heading */
.plans .card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #1f1f1f;
}

/* Price */
.plans .price {
  font-size: 2rem;
  font-weight: 700;
  color: #ff4d6d;
  margin: 1rem 0;
  position: relative;
}

/* Floating animation on price */
.plans .price {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* Button */
.plans .btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, #ff4d6d, #ff7b92);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(255, 77, 109, 0.4);
}

.plans .btn:hover {
  background: linear-gradient(135deg, #e13c5b, #ff4d6d);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 77, 109, 0.6);
}

/* Animating card entry */
.plans .card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s forwards;
}

.plans .card:nth-child(1) { animation-delay: 0.2s; }
.plans .card:nth-child(2) { animation-delay: 0.4s; }
.plans .card:nth-child(3) { animation-delay: 0.6s; }
.plans .card:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.info-card a {
  color: #000;           /* make links black */
  text-decoration: none; /* remove underline */
  font-weight: 500;      /* optional: make them slightly bold */
}

.info-card a:hover {
  color: #444;           /* optional: dark gray on hover */
  text-decoration: underline; /* optional hover underline */
}
.bubble.hire {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(40%, -40%);
  background: #000;
  color: #fff;
  font-weight: 900;
  padding: 26px 22px;
  border-radius: 999px;

  /* Rotation animation */
  animation: rotateBubble 6s linear infinite;
}

@keyframes rotateBubble {
  from { transform: translate(40%, -40%) rotate(0deg); }
  to { transform: translate(40%, -40%) rotate(360deg); }
}

@media (max-width: 960px) {
  .bubble.hire {
    transform: translate(20%, -40%);
    animation: rotateBubbleMobile 6s linear infinite;
  }

  @keyframes rotateBubbleMobile {
    from { transform: translate(20%, -40%) rotate(0deg); }
    to { transform: translate(20%, -40%) rotate(360deg); }
  }
}
