/* ═══════════════════════════════════════════════
   WE BRAND ME — Shared Stylesheet
   ═══════════════════════════════════════════════ */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(201,168,76,0.15);
  --black: #080808;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #F5F0E8;
  --gray: #888;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Montserrat', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--sans); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5vw;
  background: rgba(8,8,8,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: all .3s;
}


.logo { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--gold); letter-spacing: .05em; cursor: pointer; text-decoration: none; }
.logo span { color: var(--white); }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--white); text-decoration: none; font-weight: 500;
  transition: color .3s; cursor: pointer; position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold); color: var(--black) !important;
  padding: .55rem 1.4rem; font-size: .7rem !important;
  letter-spacing: .15em; font-weight: 700 !important; border: none; cursor: pointer;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 1.5px; background: var(--white); transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* BUTTONS */
.btn-primary {
  background: var(--gold); color: var(--black); padding: .9rem 2.2rem;
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 700; font-family: var(--sans); border: none; cursor: pointer;
  transition: all .3s; display: inline-block; text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.btn-outline {
  background: transparent; color: var(--white); padding: .9rem 2.2rem;
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; font-family: var(--sans); border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer; transition: all .3s; display: inline-block; text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* SECTIONS */
section { padding: 7rem 5vw; }
.section-tag { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; line-height: 1.15; max-width: 600px; }
.section-title em { color: var(--gold); font-style: italic; }
.section-sub { color: var(--gray); font-size: .85rem; line-height: 1.9; max-width: 500px; margin-top: 1rem; font-weight: 300; }
.divider { width: 50px; height: 1px; background: var(--gold); margin: 2rem 0; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5px; margin-top: 4rem; }
.service-card { background: var(--dark); padding: 2.8rem 2.2rem; position: relative; overflow: hidden; cursor: pointer; transition: all .4s; border: 1px solid rgba(255,255,255,0.04); }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%); opacity: 0; transition: opacity .4s; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2rem; margin-bottom: 1.5rem; color: #C9A84C; }
.service-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: .8rem; }
.service-card p { font-size: .8rem; color: var(--gray); line-height: 1.8; font-weight: 300; }
.service-arrow { position: absolute; bottom: 2rem; right: 2rem; width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; transition: all .3s; }
.service-card:hover .service-arrow { background: var(--gold); color: var(--black); }

/* WHY US */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; line-height: 1; min-width: 40px; color: rgba(201,168,76,0.3); }
.why-item h4 { font-size: .85rem; font-weight: 600; letter-spacing: .05em; margin-bottom: .4rem; }
.why-item p { font-size: .78rem; color: var(--gray); line-height: 1.8; font-weight: 300; }
.why-visual { background: var(--dark); border: 1px solid rgba(201,168,76,0.12); padding: 3rem; position: relative; overflow: hidden; }
.why-visual::after { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%); }
.process-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.process-step { display: flex; align-items: center; gap: 1.2rem; padding: 1rem 1.2rem; border-left: 2px solid rgba(201,168,76,0.2); transition: all .3s; }
.process-step:hover { border-left-color: var(--gold); background: rgba(201,168,76,0.04); }
.step-num { font-family: var(--serif); font-size: 1.8rem; color: var(--gold); font-weight: 700; min-width: 30px; }
.step-title { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.step-desc { font-size: .72rem; color: var(--gray); margin-top: .2rem; }
.project-video {
  width: 100%;
  height: 100%;
  object-fit:cover;
}
.founder-photo img {width: 100%; height: 100%; object-fit: cover; border-radius: 50%;}

.blog-thumb img {height: 100%; width: 100%; object-fit: cover;}
/* PORTFOLIO */
/* ═════════════════════════════
   PORTFOLIO (UPDATED FIX)
   ═════════════════════════════ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ✅ MAX 3 PER ROW */
  gap: 1.5rem;
  margin-top: 3rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 6/3;
  background: var(--dark3);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform .3s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
}

.portfolio-thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.08); /* nice zoom effect */
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.88);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity .4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-tag {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.portfolio-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.portfolio-desc {
  font-size: .75rem;
  color: var(--gray);
  line-height: 1.7;
}

/* TESTIMONIALS */
.testimonials-bg { background: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.testimonial-card { background: var(--dark2); padding: 2.5rem; border: 1px solid rgba(201,168,76,0.08); position: relative; transition: border-color .3s; }
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); }
.quote-icon { font-family: var(--serif); font-size: 5rem; color: var(--gold); opacity: .3; line-height: .6; margin-bottom: 1rem; }
.testimonial-text { font-size: .85rem; color: #bbb; line-height: 1.9; font-style: italic; font-weight: 300; margin-bottom: 1.8rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-dim); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.2rem; color: var(--gold); font-weight: 700; border: 1px solid rgba(201,168,76,0.3); }
.author-name { font-size: .8rem; font-weight: 600; }
.author-role { font-size: .7rem; color: var(--gray); margin-top: .2rem; }
.stars { color: var(--gold); font-size: .8rem; margin-bottom: 1rem; }

/* ABOUT */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 4rem; }
.founder-card { background: var(--dark); border: 1px solid rgba(201,168,76,0.1); padding: 2.5rem; transition: all .3s; position: relative; overflow: hidden; }
.founder-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); opacity: 0; transition: opacity .3s; }
.founder-card:hover { border-color: rgba(201,168,76,0.3); }
.founder-card:hover::before { opacity: 1; }
.founder-photo { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dim), rgba(201,168,76,0.05)); border: 2px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 2.5rem; color: var(--gold); margin-bottom: 1.5rem; }
.founder-name { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; }
.founder-role { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: .4rem 0 1rem; }
.founder-bio { font-size: .8rem; color: var(--gray); line-height: 1.9; font-weight: 300; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 5rem; }
.value-item { text-align: center; padding: 2rem 1.5rem; background: var(--dark); border: 1px solid rgba(201,168,76,0.08); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.value-text { font-size: .75rem; color: var(--gray); line-height: 1.8; }

/* BRANDS */
.brands-section { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 3.5rem 5vw; }
.brands-label { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gray); text-align: center; margin-bottom: 2.5rem; }
.brands-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 3.5rem; }
.brand-item { font-family: var(--serif); font-size: 1.1rem; color: rgba(255,255,255,0.2); letter-spacing: .1em; transition: color .3s; cursor: default; font-weight: 600; }
.brand-item:hover { color: var(--gold); }
/* ════════════════════════════════════════════════════════════════ */
/* FAQ SECTION - COMPLETE CSS CODE */
/* ════════════════════════════════════════════════════════════════ */

/* ─── FAQ SECTION CONTAINER ─── */
.faq-section {
  padding: 5rem 5vw;
  background: var(--light);
}

/* ─── FAQ CONTAINER ─── */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ─── FAQ ITEM (INDIVIDUAL ACCORDION) ─── */
.faq-item {
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  overflow: hidden;
  background: none;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* ─── FAQ QUESTION (CLICKABLE HEADER) ─── */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  user-select: none;
  background: none;
  transition: background 0.3s ease;
  border: none;
  font-family: inherit;
  font-size: inherit;
   

}

.faq-question:hover {
  background: rgba(201, 168, 76, 0.03);
}

/* ─── FAQ QUESTION TEXT ─── */
.faq-text {
  font-weight: 600;
  font-size: 1rem;
  color:#C9A84C ;
  margin: 0;
}

/* ─── FAQ ICON (+ / -) ─── */
.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

/* ─── FAQ ICON WHEN ACTIVE ─── */
.faq-item.active .faq-icon {
  background: var(--gold);
  color: white;
  transform: rotate(45deg);
}

/* ─── FAQ ANSWER (HIDDEN BY DEFAULT) ─── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(201, 168, 76, 0.03);
  transition: max-height 0.4s ease, padding 0.4s ease;
}

/* ─── FAQ ANSWER WHEN ACTIVE (EXPANDED) ─── */
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* ─── FAQ ANSWER TEXT ─── */
.faq-answer p {
  margin: 0;
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ════════════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN - MOBILE & TABLET */
/* ════════════════════════════════════════════════════════════════ */

/* ─── TABLET & SMALL SCREENS (768px and below) ─── */
@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 4vw;
  }

  .faq-question {
    padding: 1.2rem;
  }

  .faq-text {
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 1.2rem 1.2rem;
  }
}

/* ─── SMALL MOBILE SCREENS (480px and below) ─── */
@media (max-width: 480px) {
  .faq-section {
    padding: 3rem 3vw;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-text {
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
    margin-left: 0.8rem;
  }

  .faq-container {
    gap: 0.8rem;
  }
}

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; }
.contact-item { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-icon { color: #C9A84C; width: 44px; height: 44px; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: #C9A84C; }
.contact-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.contact-value { font-size: .9rem; color: var(--white); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--dark); border: 1px solid rgba(255,255,255,0.08); color: var(--white); padding: .9rem 1.2rem; font-family: var(--sans); font-size: .82rem; outline: none; transition: border-color .3s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: none; height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: .8rem; background:#C9A84C ; color:black; padding: .9rem 2rem; font-size: .75rem; letter-spacing: .1em; font-weight: 600; text-decoration: none; margin-top: 1.5rem; transition: all .3s; }
.whatsapp-btn:hover { background:#C9A84C; transform: translateY(-2px); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.blog-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.05); overflow: hidden; transition: all .3s; cursor: pointer; }
.blog-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-3px); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, var(--dark2), var(--dark3)); display: flex; align-items: center; justify-content: center; font-size: 3rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.blog-body { padding: 1.8rem; }
.blog-cat { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.blog-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; line-height: 1.3; margin-bottom: .8rem; }
.blog-excerpt { font-size: .78rem; color: var(--gray); line-height: 1.8; font-weight: 300; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.blog-date { font-size: .68rem; color: var(--gray); }
.blog-read { font-size: .68rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }

/* SERVICE DETAIL */
.service-hero { padding: 10rem 5vw 5rem; background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%); border-bottom: 1px solid rgba(201,168,76,0.1); }
.service-icon-big { font-size: 4rem; margin-bottom: 1.5rem; color: #C9A84C; }
.service-hero h1 { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; }
.service-hero p { font-size: .9rem; color: var(--gray); max-width: 550px; margin-top: 1rem; line-height: 1.9; font-weight: 300; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 4rem; }
.benefit-list { list-style: none; }
.benefit-list li { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: .82rem; color: #ccc; display: flex; gap: .8rem; align-items: center; }
.benefit-list li::before { content: '✦'; color: var(--gold); font-size: .7rem; flex-shrink: 0; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(8,8,8,0) 100%); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); text-align: center; padding: 6rem 5vw; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; margin-bottom: 1rem; }
.cta-band p { color: var(--gray); font-size: .85rem; max-width: 450px; margin: 0 auto 2.5rem; line-height: 1.9; }

/* FOOTER */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 5vw 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .78rem; color: var(--gray); line-height: 1.9; margin-top: 1rem; max-width: 250px; font-weight: 300; }
.footer-col h4 { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col a { display: block; font-size: .78rem; color: var(--gray); text-decoration: none; margin-bottom: .7rem; cursor: pointer; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: .7rem; color: var(--gray); }
.social-links { display: flex; gap: 1rem; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: .8rem; color:#C9A84C; text-decoration: none; transition: all .3s; cursor: pointer; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═════════════════════════════
   RESPONSIVE
   Clean Mobile Layout
   ═════════════════════════════ */


/* ---------- TABLET ---------- */

@media (max-width:1024px){

section{
padding:6rem 5vw;
}

.services-grid{
grid-template-columns:repeat(2,1fr);
}


 .portfolio-grid{
    grid-template-columns:repeat(2,1fr);
  }


.blog-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:repeat(2,1fr);
gap:2rem;
}

.contact-grid{
grid-template-columns:1fr;
gap:3rem;
}

.why-grid{
grid-template-columns:1fr;
gap:3rem;
}

.service-detail-grid{
grid-template-columns:1fr;
}

.about-values{
grid-template-columns:repeat(2,1fr);
}

}


/* ---------- MOBILE ---------- */

@media (max-width:768px){

nav{
padding:.9rem 5vw;
}

/* hamburger */

.hamburger{
display:flex;
z-index:1001;
}

/* hide normal menu */

.nav-links{
display:none;
}

/* full screen mobile menu */


.nav-links.open{
display:flex;
flex-direction:column;
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:#080808;
align-items:center;
justify-content:flex-start; /* start from top instead of center */
padding-top:6rem; /* space below navbar */
gap:1.8rem;
z-index:999;
}

/* mobile menu links */

.nav-links.open a{
font-size:1rem;
letter-spacing:.15em;
}

/* CTA button */

.nav-cta{
padding:.6rem 1.5rem;
font-size:.75rem !important;
}

/* logo slightly smaller */

.logo{
font-size:1.4rem;
}



/* SECTIONS */

section{
padding:4rem 6vw;
}


/* TEXT */

.section-title{
font-size:2rem;
line-height:1.2;
}

.section-sub{
font-size:.9rem;
}


/* SERVICES */

.services-grid{
grid-template-columns:1fr;
gap:1.2rem;
}

.service-card{
padding:2rem;
}


/* WHY US */

.why-grid{
grid-template-columns:1fr;
gap:2.5rem;
}


/* PORTFOLIO */

 .portfolio-grid{
    grid-template-columns:1fr;
  }

.portfolio-item{
aspect-ratio:16/10;
}

.portfolio-title{
font-size:1.2rem;
}



/* ---------- SMALLER TESTIMONIALS ---------- */

@media (max-width:768px){

.testimonials-grid{
grid-template-columns:1fr;
gap:1.2rem;
}

.testimonial-card{
padding:1.6rem;
}

.quote-icon{
font-size:3rem;
margin-bottom:.6rem;
}

.testimonial-text{
font-size:.75rem;
line-height:1.6;
margin-bottom:1.2rem;
}

.author-avatar{
width:34px;
height:34px;
font-size:1rem;
}

.author-name{
font-size:.72rem;
}

.author-role{
font-size:.62rem;
}

.stars{
font-size:.7rem;
margin-bottom:.6rem;
}

}/* FIX TESTIMONIAL AVATAR SHAPE */

.author-avatar{
width:44px;
height:44px;
border-radius:50%;
overflow:hidden;
}

.author-avatar img{
width:100%;
height:100%;
object-fit:cover;
border-radius:50%;
display:block;
}


/* FOUNDERS */

.founders-grid{
grid-template-columns:1fr;
gap:2rem;
}

.founder-card{
padding:2rem;
}


/* VALUES */

.about-values{
grid-template-columns:1fr;
gap:1rem;
}


/* BLOG */

.blog-grid{
grid-template-columns:1fr;
gap:1.5rem;
}

.blog-thumb{
height:170px;
}


/* CONTACT */

.contact-grid{
grid-template-columns:1fr;
}

.form-row{
grid-template-columns:1fr;
}


/* CTA */

.cta-band{
padding:3.5rem 6vw;
}

.cta-band h2{
font-size:1.8rem;
}


/* ---------- MOBILE FOOTER FIX ---------- */

@media (max-width:768px){

footer{
padding:2.5rem 4vw 1.5rem;
overflow:hidden;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
gap:1rem;
}

.footer-brand p{
font-size:.7rem;
max-width:100%;
}

.footer-col h4{
font-size:.65rem;
margin-bottom:.7rem;
}

.footer-col a{
font-size:.7rem;
margin-bottom:.45rem;
}

.footer-bottom{
flex-direction:row;
flex-wrap:wrap;
justify-content:space-between;
font-size:.65rem;
gap:.8rem;
margin-top:1.5rem;
}

.social-links{
gap:.6rem;
}

.social-link{
width:30px;
height:30px;
font-size:.7rem;
}
/* ---------- CONTACT FORM MOBILE FIX ---------- */

@media (max-width:768px){

.contact-grid{
grid-template-columns:1fr;
gap:2rem;
}

.form-row{
grid-template-columns:1fr; /* stack inputs */
gap:.8rem;
}

.form-group input,
.form-group textarea,
.form-group select{
width:100%;
font-size:.8rem;
padding:.8rem 1rem;
}

.form-group textarea{
height:110px;
}

.whatsapp-btn{
width:100%;
justify-content:center;
font-size:.75rem;
padding:.9rem 1rem;
}

}
}


/* ---------- SMALL PHONES ---------- */

@media (max-width:480px){

.section-title{
font-size:1.7rem;
}

.section-sub{
font-size:.85rem;
}

.service-card{
padding:1.8rem;
}

.portfolio-title{
font-size:1.05rem;
}

.blog-title{
font-size:1.05rem;
}

.cta-band h2{
font-size:1.6rem;
}
}
}
