:root {
  --black: #071714;
  --dark: #0c211d;
  --white: #ffffff;
  --soft: #f7f2e8;
  --gold: #d6ba72;
  --gold-dark: #9f813c;
  --gray: #9b9b9b;
  --body-bg: #050505;
  --card-bg: rgba(255, 255, 255, 0.07);
  --card-bg-2: rgba(255, 255, 255, 0.035);
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --font-heading: "Marcellus", serif;
  --font-body: "Inter", sans-serif;
}

body.light-theme {
  --black: #ffffff;
  --dark: #f7f2e8;
  --white: #121212;
  --soft: #fff8e7;
  --gold: #c9a64b;
  --gold-dark: #8b6f2d;
  --gray: #5f5f5f;
  --body-bg: #ffffff;
  --card-bg: rgba(201, 166, 75, 0.10);
  --card-bg-2: rgba(255, 248, 231, 0.95);
  --text-main: #121212;
  --text-muted: rgba(18, 18, 18, 0.68);
  --border: rgba(18, 18, 18, 0.12);
  --shadow: 0 30px 80px rgba(120, 90, 20, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(214, 186, 114, 0.18), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.8;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 0;
  transition: 0.4s ease;
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 92px;
  height: 42px;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.25);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition: 0.3s;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 14px;
  transition: 0.35s ease;
}

.nav-btn,
.primary-btn {
  background: #d6ba72;
  color: #050505;
  border: 2px solid #d6ba72;
  box-shadow: none;
  font-weight: 800;
}

.nav-btn:hover,
.primary-btn:hover {
  transform: translateY(-4px);
  background: #c8a95a;
  box-shadow: none;
}
.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.secondary-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-4px);
}

.menu-btn,
.close-menu {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 24px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.96);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
  transform: translateX(100%);
  transition: 0.45s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 28px;
  font-family: var(--font-heading);
}

.close-menu {
  display: block;
  position: absolute;
  top: 28px;
  right: 28px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(214,186,114,.15), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(214,186,114,.08), transparent 30%),
    linear-gradient(135deg,#071714,#0c211d);
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  padding: 9px 16px;
  border: 1px solid rgba(214, 186, 114, 0.3);
  border-radius: 100px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 24px;
  background: rgba(214, 186, 114, 0.08);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stats h3 {
  font-size: 34px;
  color: var(--gold);
}

.hero-stats p {
  font-size: 13px;
  margin: 0;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.floating-card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: float 5s ease-in-out infinite;
}

.floating-card img {
  height: 100%;
  object-fit: cover;
}

.card-one {
  width: 68%;
  height: 430px;
  right: 0;
  top: 40px;
}

.card-two {
  width: 48%;
  height: 260px;
  left: 0;
  bottom: 60px;
  animation-delay: 1s;
}

.card-three {
  width: 42%;
  height: 220px;
  right: 40px;
  bottom: 0;
  animation-delay: 2s;
}

.hero-badge {
  position: absolute;
  left: 30px;
  top: 130px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.hero-badge i {
  color: var(--gold);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

.brand-strip {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0a0a0a;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.strip-track span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-image img {
  height: 560px;
  object-fit: cover;
}

.about-content h2,
.section-heading h2,
.case-card h2,
.contact-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-content p,
.section-heading p,
.case-card p,
.contact-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 17px;
}

.about-points {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 18px;
}

.about-points i {
  color: var(--gold);
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.service-grid,
.package-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card,
.package-card,
.why-card,
.timeline-item,
.faq-item {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.06),
    rgba(12,33,29,.75)
  );
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.package-card::before,
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(214, 186, 114, 0.18), transparent 45%);
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover,
.package-card:hover,
.why-card:hover,
.timeline-item:hover {
  transform: translateY(-10px);
  border-color: rgba(214, 186, 114, 0.55);
}

.service-card:hover::before,
.package-card:hover::before,
.why-card:hover::before {
  opacity: 1;
}

.service-card i,
.why-card i {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(214, 186, 114, 0.12);
  color: var(--gold);
  font-size: 25px;
  margin-bottom: 26px;
}

.service-card h3,
.package-card h3,
.why-card h3,
.timeline-item h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.service-card p,
.package-card p,
.why-card p,
.timeline-item p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.timeline-item span {
  display: inline-block;
  color: var(--gold);
  font-size: 36px;
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 800;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.portfolio-grid {
  columns: 3 280px;
  column-gap: 24px;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
}

.portfolio-item:nth-child(2n) img {
  height: 420px;
}

.portfolio-item:nth-child(3n) img {
  height: 310px;
}

.portfolio-item img {
  height: 360px;
  object-fit: cover;
  transition: 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  padding: 18px;
  border-radius: 20px;
  transform: translateY(18px);
  opacity: 0;
  transition: 0.35s;
}

/* .portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
} */

.portfolio-overlay h3 {
  color: var(--gold);
  margin-bottom: 6px;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.75);
}

.case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background:
    linear-gradient(135deg, rgba(214, 186, 114, 0.18), rgba(255, 255, 255, 0.04)),
    #0b0b0b;
  border: 1px solid rgba(214, 186, 114, 0.25);
  border-radius: 38px;
  padding: 55px;
  box-shadow: var(--shadow);
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-results div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  text-align: center;
}

.case-results h3 {
  color: var(--gold);
  font-size: 42px;
  margin-bottom: 8px;
}

.package-card {
  padding: 40px;
}

.package-card.featured {
  border-color: var(--gold);
  transform: translateY(-16px);
}

.popular {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.package-card ul {
  list-style: none;
  margin: 28px 0;
}

.package-card li {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.package-card li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  margin-right: 10px;
}

.package-card a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 15px;
  border-radius: 100px;
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  transition: 0.3s;
}

.package-card.featured a,
.package-card a:hover {
  background: var(--gold);
}

.faq-wrapper {
  max-width: 850px;
  margin: auto;
  display: grid;
  gap: 16px;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.7);
  padding-top: 18px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

.faq-item.active i {
  transform: rotate(180deg);
}

.faq-question i {
  transition: 0.3s;
}

.contact {
 background:
    radial-gradient(circle at 10% 20%, rgba(214,186,114,.12), transparent 30%),
    #071714;
}

.contact-info {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-info i {
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 34px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 17px 18px;
  border-radius: 16px;
  outline: none;
}

.contact-form textarea {
  min-height: 130px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form button {
  border: none;
  padding: 17px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-4px);
}

.footer {
  padding: 70px 0 0;
  background: #030303;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-logos {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logos img {
  width: 100px;
  height: 46px;
  object-fit: contain;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.footer h3 {
  color: var(--gold);
  margin-bottom: 18px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-bottom {
  text-align: center;
  padding: 24px;
  margin-top: 50px;
  border-top: 1px solid var(--border);
  color: rgba(14, 9, 9, 0.55);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  width: min(900px, 95%);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 20px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 22px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .nav-menu,
  .nav-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .case-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .service-grid,
  .package-grid,
  .why-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-results {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 80px 0;
  }

  .brand-logo {
    width: 76px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .card-one {
    width: 82%;
    height: 300px;
  }

  .card-two {
    width: 62%;
    height: 190px;
  }

  .card-three {
    width: 56%;
    height: 170px;
  }

  .hero-badge {
    left: 0;
    top: 80px;
  }

  .service-grid,
  .package-grid,
  .why-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 360px;
  }

  .case-card {
    padding: 32px;
  }

  .package-card.featured {
    transform: translateY(0);
  }

  .footer-grid {
    text-align: center;
  }

  .footer-logos,
  .social-links {
    justify-content: center;
  }
}



/* ================= RESPONSIVE FIX ================= */

@media (max-width: 1200px) {
  .container {
    width: 92%;
  }

  .hero h1 {
    font-size: 72px;
  }
}

@media (max-width: 991px) {
  body {
    overflow-x: hidden;
  }

  .nav-menu,
  .nav-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .brand-logo {
    width: 80px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .case-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    min-height: 520px;
    width: 100%;
  }

  .service-grid,
  .package-grid,
  .why-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-results {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    columns: 2 260px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .header {
    padding: 12px 0;
  }

  .brand-area {
    gap: 8px;
  }

  .brand-logo {
    width: 68px;
    height: 34px;
  }

  .brand-divider {
    height: 28px;
  }

  .hero {
    padding-top: 115px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-stats div {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-stats h3 {
    font-size: 30px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .card-one {
    width: 82%;
    height: 280px;
    right: 0;
    top: 30px;
  }

  .card-two {
    width: 60%;
    height: 180px;
    left: 0;
    bottom: 70px;
  }

  .card-three {
    width: 58%;
    height: 170px;
    right: 10px;
    bottom: 0;
  }

  .hero-badge {
    left: 0;
    top: 105px;
    padding: 14px 16px;
    font-size: 13px;
  }

  .about-image img {
    height: 360px;
  }

  .about-content h2,
  .section-heading h2,
  .case-card h2,
  .contact-content h2 {
    font-size: 34px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .service-grid,
  .package-grid,
  .why-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .package-card,
  .why-card,
  .timeline-item,
  .faq-item {
    padding: 26px;
    border-radius: 22px;
  }

  .package-card.featured {
    transform: none;
  }

  .portfolio-grid {
    columns: 1;
  }

  .portfolio-item img,
  .portfolio-item:nth-child(2n) img,
  .portfolio-item:nth-child(3n) img {
    height: 330px;
  }

  .case-card {
    padding: 28px;
    border-radius: 28px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-logos,
  .social-links {
    justify-content: center;
  }

  .mobile-menu a {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 90%;
  }

  .cursor-glow {
    display: none;
  }

  .brand-logo {
    width: 60px;
    height: 30px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .eyebrow,
  .section-tag {
    font-size: 11px;
    padding: 8px 12px;
  }

  .hero p,
  .about-content p,
  .section-heading p,
  .case-card p,
  .contact-content p {
    font-size: 14px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .card-one {
    height: 250px;
  }

  .card-two {
    height: 155px;
  }

  .card-three {
    height: 150px;
  }

  .hero-badge {
    max-width: 210px;
  }

  .about-content h2,
  .section-heading h2,
  .case-card h2,
  .contact-content h2 {
    font-size: 30px;
  }

  .portfolio-item img,
  .portfolio-item:nth-child(2n) img,
  .portfolio-item:nth-child(3n) img {
    height: 280px;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .faq-question {
    font-size: 15px;
    gap: 15px;
  }

  .contact-info p {
    font-size: 14px;
    align-items: flex-start;
  }

  .footer-bottom {
    font-size: 13px;
    line-height: 1.6;
  }
}

body {
  background: var(--body-bg);
  color: var(--text-main);
  transition: background 0.35s ease, color 0.35s ease;
}

.theme-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text-main);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 17px;
  transition: 0.35s ease;
}

.theme-toggle:hover {
  background: var(--gold);
  color: #050505;
  transform: translateY(-3px);
}

.hero-bg {
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 186, 114, 0.23), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, var(--body-bg), var(--dark)) !important;
}

body.light-theme .hero-bg {
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 166, 75, 0.24), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(255, 236, 179, 0.45), transparent 28%),
    linear-gradient(135deg, #ffffff, #fff8e7) !important;
}

body.light-theme .header.scrolled {
  background: rgba(255, 255, 255, 0.84);
}

body.light-theme .brand-strip,
body.light-theme .footer {
  background: #fff8e7;
}

body.light-theme .contact {
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 166, 75, 0.18), transparent 30%),
    #ffffff;
}

body.light-theme .service-card,
body.light-theme .package-card,
body.light-theme .why-card,
body.light-theme .timeline-item,
body.light-theme .faq-item,
body.light-theme .contact-form,
body.light-theme .about-points div {
  background: linear-gradient(145deg, var(--card-bg-2), rgba(201, 166, 75, 0.08));
}

body.light-theme .case-card {
  background:
    linear-gradient(135deg, rgba(201, 166, 75, 0.16), rgba(255, 248, 231, 0.9)),
    #ffffff;
}

body.light-theme .secondary-btn,
body.light-theme .filter-btn {
  color: var(--text-main);
  background: rgba(201, 166, 75, 0.08);
}

body.light-theme .hero-badge,
body.light-theme .portfolio-overlay {
  background: rgba(255, 255, 255, 0.82);
}

body.light-theme .mobile-menu {
  background: rgba(255, 255, 255, 0.96);
}

body.light-theme .nav-menu a,
body.light-theme .hero p,
body.light-theme .about-content p,
body.light-theme .section-heading p,
body.light-theme .case-card p,
body.light-theme .contact-content p,
body.light-theme .service-card p,
body.light-theme .package-card p,
body.light-theme .why-card p,
body.light-theme .timeline-item p,
body.light-theme .faq-answer p,
body.light-theme .footer p,
body.light-theme .footer a,
body.light-theme .contact-info p {
  color: var(--text-muted);
}

body.light-theme .package-card a {
  background: #121212;
  color: #ffffff;
}

body.light-theme .package-card.featured a,
body.light-theme .package-card a:hover {
  background: var(--gold);
  color: #050505;
}

body.light-theme .cursor-glow {
  background: radial-gradient(circle, rgba(201, 166, 75, 0.16), transparent 65%);
}

@media (max-width: 991px) {
  .theme-toggle {
    width: 42px;
    height: 42px;
  }
}

body.light-theme .package-card li {
  color: rgba(18, 18, 18, 0.78);
  border-bottom-color: rgba(18, 18, 18, 0.10);
}

body.light-theme .package-card li::before {
  color: var(--gold);
}

body.light-theme .package-card h3 {
  color: #121212;
}

body.light-theme .package-card p {
  color: rgba(18, 18, 18, 0.68);
}


.about-team {
  padding: 24px;
  border-radius: 36px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--card-bg), var(--card-bg-2));
  box-shadow: var(--shadow);
}

.director-card {
  text-align: center;
  margin: 0 auto 24px;
  background: transparent;
  border: none;
  box-shadow: none;
  width: auto;
}

.director-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-card h3 {
  color: var(--text-main);
  font-size: 16px;
  margin-bottom: 4px;
}

.director-card p {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
} 

.team-members {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.top-members,
.bottom-members {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.member-card {
  width: 160px;
  height: 230px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: 0.35s ease;
}

.member-card:hover,
.director-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.member-card .team-photo {
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.member-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card h4 {
  color: var(--text-main);
  font-size: 14px;
  margin: 10px 6px 4px;
}

.member-card p {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .top-members,
  .bottom-members {
    flex-wrap: wrap;
  }

  .member-card {
    width: 145px;
    height: 220px;
  }

  .member-card .team-photo {
    height: 160px;
  }

  .director-card {
    width: 190px;
  }

  .director-photo {
    height: 120px;
    width:120px;
  }
}

@media (max-width: 576px) {
  .about-team {
    padding: 18px;
    border-radius: 26px;
  }

  .director-card {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 22px;
  }

  .director-photo {
    height: 260px;
  }

  .top-members,
  .bottom-members {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .member-card {
    width: 100%;
    height: auto;
  }

  .member-card .team-photo {
    height: 260px;
  }

  .member-card h4 {
    font-size: 15px;
    margin-top: 12px;
  }

  .member-card p {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

@media (max-width: 390px) {
  .director-photo,
  .member-card .team-photo {
    height: 230px;
  }
}

@media (max-width: 576px) {

  .member-card .team-photo {
    height: auto;
    min-height: 220px;
    background: #f5f5f5;
  }

  .member-card .team-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

}