@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold: #c9a96e;
  --gold-light: #e2c992;
  --dark: #0a0a0f;
  --dark-2: #12121a;
  --dark-3: #1a1a26;
  --text: #e8e6e3;
  --text-muted: #8a8a96;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--glass-border);
}

/* .nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  color: var(--gold);
  letter-spacing: 1px;
} */

.nav-logo {
  height: 70px;
}

.logo-kaya {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.logo-sub {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.logo-dot {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-left: -0.1rem;
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color .3s;
}

.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 {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: .65rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .3s;
  cursor: pointer;
  background: transparent;
  border-radius: 10px;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: .3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(var(--glass-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .3;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  to {
    transform: translateY(80px);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  20% {
    opacity: .6;
  }

  100% {
    opacity: 0;
    transform: translateY(-200px) translateX(40px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1.4rem;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s .3s forwards;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .5s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}

.btn-primary {
  padding: .9rem 2.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  border-radius: 7px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
  padding: .9rem 2.4rem;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 7px;
  color: var(--text);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: var(--text-muted);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: scaleY(1)
  }

  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top
  }
}

/* ── EXPERIENCE STRIP ── */
.experience-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--dark-2);
  padding: 4rem 4%;
}

.exp-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: expGlowPulse 4s ease-in-out infinite;
}

@keyframes expGlowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.exp-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.exp-deco-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.exp-center {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.exp-number-wrap {
  display: flex;
  align-items: baseline;
  position: relative;
}

.exp-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: shimmerGold 3s ease-in-out infinite;
}

.exp-plus {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.7;
  margin-left: 0.15em;
  line-height: 1;
}

@keyframes shimmerGold {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.exp-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.exp-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
}

.exp-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ── SECTIONS ── */
section {
  padding: 7rem 4%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
  font-size: .95rem;
  font-weight: 300;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

/* ── ABOUT ── */
.about {
  background: var(--dark-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--dark-3), var(--dark));
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 169, 110, 0.15), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(201, 169, 110, 0.08), transparent 50%);
}

.about-visual-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
}

.about-visual-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: .5;
  opacity: .5;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.about-feat {
  padding: 1.2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 7px;
  transition: border-color .3s;
}

.about-feat:hover {
  border-color: var(--gold);
}

.about-feat-icon {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.about-feat h4 {
  font-size: .9rem;
  margin-bottom: .3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.about-feat p {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── SERVICES ── */
.services {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: transform .4s, border-color .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.8rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .8rem;
}

.service-card p {
  font-size: .88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}



/* ── PROCESS ── */
.process {
  background: var(--dark);
}

.process-timeline {
  display: flex;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--glass-border);
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  background: var(--dark);
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  transition: all .3s;
}

.process-step:hover .step-num {
  background: var(--gold);
  color: var(--dark);
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: .6rem;
}

.process-step p {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--dark-2);
  text-align: center;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: .3;
  line-height: 1;
  margin-bottom: -1rem;
}

.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text);
}

.testimonial-author {
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: .8rem;
  margin-top: .3rem;
}

/* ── CONTACT ── */
.contact {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.contact-detail-icon {
  color: var(--gold);
  font-size: 1.2rem;
  min-width: 24px;
  text-align: center;
}

.contact-detail span {
  font-size: .9rem;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* ── FOOTER ── */
.footer {
  padding: 3rem 4%;
  border-top: 1px solid var(--glass-border);
  background: var(--dark-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: .8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: .8rem;
  color: var(--text-muted);
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s, transform .7s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */

/* Tablet & small desktop */
@media (max-width: 968px) {

  .btn-msg {
    display: flex;
    justify-content: center;
  }

  /* Navbar */
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(24px);
    padding: 2rem 6%;
    gap: 0;
    border-bottom: 1px solid var(--glass-border);
    animation: menuSlideDown 0.3s ease-out;
  }

  @keyframes menuSlideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links.active li {
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.active li:last-child {
    border-bottom: none;
  }

  .nav-links.active a {
    display: block;
    padding: 1rem 0;
    font-size: 0.95rem;
    color: var(--text);
  }

  /* Experience Strip */
  .experience-strip {
    padding: 3rem 4%;
  }

  .exp-center {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .exp-text {
    align-items: center;
  }

  .exp-deco-line {
    display: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual {
    aspect-ratio: 16/9;
    max-height: 280px;
  }

  .about-text h3 {
    font-size: 1.6rem;
    text-align: center;
  }

  .about-text p {
    text-align: center;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  /* Process */
  .process-timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 1.2rem;
    padding: 0;
  }

  .step-num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

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

  .contact-info {
    text-align: center;
  }

  /* Footer */
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 600px) {

  /* Navbar */
  .navbar {
    padding: 1rem 5%;
  }

  .logo-kaya {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }

  .logo-sub {
    font-size: 0.9rem;
  }

  .logo-dot {
    font-size: 1.7rem;
  }

  /* Hero */
  .hero {
    min-height: 600px;
    padding-top: 80px;
  }

  .hero-content {
    padding: 0 1.2rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.78rem;
  }

  .hero-scroll {
    bottom: 1.5rem;
  }

  /* Experience Strip */
  .experience-strip {
    padding: 2.5rem 5%;
  }

  .exp-number {
    font-size: 3.5rem;
  }

  .exp-plus {
    font-size: 2rem;
  }

  .exp-title {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .exp-sub {
    font-size: 0.72rem;
  }

  /* Sections */
  section {
    padding: 4rem 5%;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 0.88rem;
  }

  /* About */
  .about-visual {
    aspect-ratio: 16/10;
    max-height: 220px;
  }

  .about-text h3 {
    font-size: 1.4rem;
  }

  .about-text p {
    font-size: 0.88rem;
  }

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

  .about-feat {
    padding: 1rem;
  }

  .about-feat h4 {
    font-size: 0.82rem;
  }

  .about-feat p {
    font-size: 0.72rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.8rem 1.5rem;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .service-card p {
    font-size: 0.82rem;
  }

  /* Process */
  .process-step h3 {
    font-size: 0.95rem;
  }

  .process-step p {
    font-size: 0.78rem;
  }

  .step-num {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  /* Testimonial */
  .quote-mark {
    font-size: 3.5rem;
    margin-bottom: -0.5rem;
  }

  .testimonial blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .testimonial-author {
    font-size: 0.8rem;
  }

  .testimonial-role {
    font-size: 0.72rem;
  }

  /* Contact */
  .contact-info h3 {
    font-size: 1.4rem;
  }

  .contact-info p {
    font-size: 0.85rem;
  }

  .contact-detail span {
    font-size: 0.82rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }

  .form-group textarea {
    min-height: 120px;
  }

  /* Footer */
  .footer {
    padding: 2rem 5%;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Small mobile */
@media (max-width: 400px) {

  .logo-kaya {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }

  .logo-sub {
    font-size: 0.78rem;
  }

  .logo-dot {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-sub {
    font-size: 0.82rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .exp-number {
    font-size: 3rem;
  }

  .exp-plus {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .testimonial blockquote {
    font-size: 0.95rem;
  }
}