/* ============ RESET & VARIABLES ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors - Exact Logo Match */
  --accent: #FF7A29; /* Slightly more vibrant and professional orange */
  --accent-secondary: #FFB347;
  --accent-dark: #E65C00;
  --accent-glow: rgba(255, 122, 41, 0.1);

  /* Background Neutrals - Cleaner, more professional palette */
  --bg-darker: #FDF9F6; /* Very subtle warm tint */
  --bg-dark: #FFFFFF; /* Pure white for high contrast */
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFF9F5;
  --bg-elevated: #FDF2EB;

  /* Text & Borders - Higher contrast for professionalism */
  --text-white: #1A110A; /* Deepest brown/black for headings */
  --text-light: #3D2B1F; /* Primary text */
  --text-muted: #5C4A3D; /* Muted but readable */
  --text-dim: #8F7B6D;
  --btn-text: #FFFFFF;
  
  --border: rgba(255, 122, 41, 0.15);
  --border-light: rgba(0, 0, 0, 0.05); /* Neutral border for cards */

  /* Animations & Transitions */
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows - Layered & Subtle (Premium) */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 12px 24px -10px rgba(0,0,0,0.05), 0 4px 8px -2px rgba(0,0,0,0.02);
  --shadow-lg: 0 32px 64px -16px rgba(0,0,0,0.08), 0 16px 32px -8px rgba(0,0,0,0.04);
  --shadow-accent: 0 20px 40px -12px rgba(255, 122, 41, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============ UTILITIES ============ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-accent {
  color: var(--accent);
  font-weight: 500;
}

.text-secondary {
  color: var(--accent-secondary);
  font-weight: 500;
}

.italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.1em;
  text-transform: none;
  display: inline-block;
  vertical-align: baseline;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-apple), transform 1.2s var(--ease-apple);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}

@media (max-width: 380px) {
  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.8rem;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--btn-text);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
}

.btn-ghost {
  background: rgba(255, 140, 66, 0.05);
  color: var(--text-dark);
  border-color: rgba(255, 140, 66, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 140, 66, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.highlight-orange {
  color: var(--accent);
  font-weight: 700;
  position: relative;
}

.highlight-orange::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;

  opacity: 0.15;
  z-index: -1;
  border-radius: 2px;
}

/* ============ HEADER & NAVBAR ============ */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
  background: rgba(255, 250, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 140, 66, 0.08);
  transition: all 0.4s var(--ease-apple);
}

.header-wrapper.scrolled .navbar {
  background: rgba(255, 255, 255, 0.97);
  padding: 0.7rem 0;
  border-bottom-color: rgba(255, 140, 66, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  transition: var(--transition);
}

.header-wrapper.scrolled .logo-img {
  height: 38px;
}

/* Nav Links (center) */
.nav-menu {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s var(--ease-apple);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

/* Right side group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Contact info in navbar */
.nav-contact-group {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.nav-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-contact-link svg {
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-contact-link:hover {
  color: var(--accent);
}

.nav-contact-link:hover svg {
  opacity: 1;
}

.nav-contact-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* CTA Button */
.nav-cta {
  display: none;
  font-size: 0.82rem;
  padding: 0.6rem 1.4rem;
}

@media (max-width: 991px) {
  .nav-cta.careers-btn {
    display: inline-flex !important;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 8px;
  }
}


/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 10px;
  transition: var(--transition);
}

.hamburger:hover {
  background: rgba(255, 140, 66, 0.06);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile menu dropdown ---- */
@media (max-width: 991px) {
  .nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: #FFFFFF;
    padding: 2rem 1.5rem;
    gap: 0.25rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    margin-top: 0.75rem;
    z-index: 100;
  }

  .nav-menu.mobile-active .nav-link {
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    width: 100%;
    border-radius: 10px;
  }

  .nav-menu.mobile-active .nav-link:hover {
    background: rgba(255, 140, 66, 0.05);
  }

  .nav-menu.mobile-active .nav-link::after {
    display: none;
  }

  /* Show contact info inside mobile menu */
  .nav-menu.mobile-active::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--border-light);
    margin: 0.5rem 0;
  }
}

/* ---- Tablet (show links, hide contact) ---- */
@media (min-width: 768px) {
  .logo-img { height: 44px; }
}

@media (min-width: 992px) {
  .nav-menu { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
  .logo-img { height: 46px; }
}

/* ---- Desktop (show everything) ---- */
@media (min-width: 1200px) {
  .nav-contact-group { display: flex; }
  .logo-img { height: 48px; }
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9rem 0 7rem;
  overflow: hidden;
  background: var(--bg-darker);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 25s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 35%;
  height: 35%;
  background: var(--accent-dark);
  bottom: -10%;
  left: -10%;
  opacity: 0.15;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 40px) scale(0.95);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

@media (min-width: 992px) {
  .hero-container {
    text-align: left;
  }
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid-layout {
    align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .hero-grid-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
  }
}

.hero-contact-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 140, 66, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03), 0 0 40px rgba(255, 140, 66, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-contact-card h3 {
  color: var(--text-white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-contact-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-form .form-group {
  margin-bottom: 1.5rem;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  background: #FDFBF9;
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.hero-form input:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px var(--accent-glow), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.whatsapp-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 14px;
  font-weight: 500;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.w-100 {
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: rgba(255, 107, 0, 0.05);
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}

@media (min-width: 992px) {
  .hero-subtitle {
    margin: 0 0 3.5rem;
  }
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }

  .hero-cta .btn {
    width: 100%;
  }
}


/* ============ SECTIONS ============ */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 1280px; /* Match container width */
  margin: 0 auto 3.5rem;
}

@media (min-width: 992px) {
  .section-header {
    text-align: left;
    margin: 0 auto 4rem;
  }
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============ ABOUT ============ */
/* ============ ABOUT (BENTO GRID) ============ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.5rem;
  width: 100%;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bento-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bento-main {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 100%);
  justify-content: center;
  position: relative;
}

.bento-illustration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bento-content {
  position: relative;
  z-index: 1;
}

.abstract-shape-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.abstract-shape-2 {
  position: absolute;
  bottom: -5%;
  left: 20%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.bento-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 140, 66, 0.08);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bento-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.bento-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.bento-feature {
  justify-content: flex-end;
}

.bento-feature h4 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.bento-feature p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.bento-icon {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: auto;
}

.bento-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: none;
}

.bento-accent h4, 
.bento-accent p, 
.bento-accent .bento-icon {
  color: #FFFFFF;
}

.bento-stat {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Specific Span Classes to fill the grid */
.span-2 {
  grid-column: span 2;
}

.bento-visual {
  background: var(--bg-darker);
  justify-content: center;
  border-color: rgba(255, 140, 66, 0.15);
}

.visual-tag {
  font-weight: 600;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.visual-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (max-width: 1200px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-visual.span-2 {
    grid-column: span 3;
  }
  .bento-feature.span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-main {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento-visual.span-2,
  .bento-feature.span-2 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .bento-main {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-main, 
  .bento-visual.span-2, 
  .bento-feature.span-2 {
    grid-column: span 1;
    grid-row: auto;
  }
  .bento-main {
    padding: 2.5rem 2rem;
  }
  .bento-card {
    padding: 2rem;
    border-radius: 24px;
  }
}

/* ============ SERVICES ============ */
.services {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.08), transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--accent);
  color: var(--text-white);
  box-shadow: var(--shadow-accent);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.service-link:hover {
  transform: translateX(6px);
  color: var(--accent-light);
}

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.process-card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--border);
  transform: translateY(-8px);
  box-shadow: var(--shadow-accent);
}

.process-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.process-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, var(--bg-card) 100%);
  border-color: var(--border);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
}

.quote-mark {
  font-size: 4rem;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.testimonial-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--btn-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 5rem 0;
}

.cta-card {
  position: relative;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
}

.cta-bg-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.05);
}

.cta-title {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: -0.04em;
}

.cta-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.cta-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  position: relative;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.info-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-darker);
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 360px;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ============ MOBILE NAV ============ */
.nav-links.mobile-active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 252, 250, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

/* ============ TABLET (640px+) ============ */
@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 8rem 0;
  }

  .hero {
    padding: 10rem 0 6rem;
  }

  .hero-cta {
    flex-direction: row;
  }

  .cta-buttons {
    flex-direction: row;
  }

  .cta-info {
    flex-direction: row;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .cta-card {
    padding: 5rem 3rem;
  }
}

/* ============ DESKTOP (1024px+) ============ */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .scroll-indicator {
    display: flex;
  }

  .section {
    padding: 10rem 0;
  }



  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
  }

  .cta-card {
    padding: 6rem 5rem;
  }
}

/* ============ ABOUT PAGE SPECIFIC ============ */
.about-hero {
  padding: 12rem 0 6rem;
  background: var(--bg-dark);
  text-align: center;
}

.mission-section {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
}

.team-section {
  border-top: 1px solid var(--border-light);
}

.card-featured {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, var(--bg-card) 100%);
  border-color: rgba(255, 107, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 10rem 0 4rem;
  }
}

/* ============ UNIQUE CONTACT FORM ============ */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-header h3 {
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group.floating {
  position: relative;
  margin-bottom: 2rem;
}

.form-group.floating input,
.form-group.floating textarea,
.form-group.floating select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  color: var(--text-white);
  font-size: 1rem;
  transition: border-color 0.4s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group.floating select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1rem;
}

.form-group.floating select option {
  background-color: var(--bg-card);
  color: var(--text-white);
  padding: 1rem;
}

.form-group.floating input:focus,
.form-group.floating textarea:focus,
.form-group.floating select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group.floating input:focus+label,
.form-group.floating input:not(:placeholder-shown)+label,
.form-group.floating textarea:focus+label,
.form-group.floating textarea:not(:placeholder-shown)+label,
.form-group.floating select:focus+label,
.form-group.floating select:not(:placeholder-shown)+label,
.form-group.floating select:valid+label {
  top: -1rem;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-radius: 16px;
  margin-top: 1rem;
}

.submit-btn svg {
  transition: transform 0.4s var(--ease-apple);
}

.submit-btn:hover svg {
  transform: translate(4px, -4px);
}

/* ============ PAGE BENTO SYSTEM ============ */
.page-bento-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  margin-bottom: 5rem;
}

.pb-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pb-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pb-card-large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 3rem;
}

.pb-card-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: none;
  box-shadow: var(--shadow-accent);
}

.pb-card-accent:hover {
  box-shadow: 0 25px 50px -12px rgba(255, 122, 41, 0.3);
}

.pb-card-accent .pb-card-title,
.pb-card-accent .pb-card-text,
.pb-card-accent .pb-icon,
.pb-card-accent .pb-title,
.pb-card-accent .pb-text,
.pb-card-accent .pb-list li {
  color: #FFFFFF;
}

.pb-card-accent .pb-text {
  opacity: 0.9;
}

.pb-card-accent .pb-service-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.pb-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.pb-card-accent .pb-label {
  color: rgba(255, 255, 255, 0.7);
}

.pb-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pb-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pb-icon {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.pb-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 1rem;
  font-family: 'Instrument Serif', serif;
}

.pb-card-title {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.pb-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pb-list {
  list-style: none;
  margin-top: auto;
  padding-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.pb-list li {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

.pb-service-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.pb-service-icon svg {
  width: 24px;
  height: 24px;
}

/* Founder Specific Refinement */
.pb-card-founder {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-darker);
}

.founder-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.75rem;
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-md);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb-role {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Contact Specific Refinement */
.contact-bento .pb-card {
  padding: 2.5rem;
}

.pb-card-form {
  grid-column: span 3;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.pb-card-form:hover {
  transform: none;
  box-shadow: none;
}

.pb-card-form .form-card {
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.pb-card-wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}

.pb-card-wide .pb-service-icon {
  margin-bottom: 0;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.pb-card-wide .pb-service-icon svg {
  width: 40px;
  height: 40px;
}

.pb-card-wide .pb-list {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 1rem;
}

@media (max-width: 992px) {
  .pb-card-wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .pb-card-wide .pb-service-icon {
    margin-bottom: 1.5rem;
  }
  .pb-card-wide .pb-list {
    grid-template-columns: 1fr;
  }
}

/* Responsive Grid Logic */
@media (max-width: 1100px) {
  .page-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pb-card-large {
    grid-column: span 2;
  }
  .pb-card-form {
    grid-column: span 2;
  }
  .contact-bento .pb-card:nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .page-bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pb-card-large, .pb-card-form {
    grid-column: span 1;
    grid-row: auto;
  }
  .pb-card {
    padding: 1.75rem;
    border-radius: 20px;
  }
  .pb-card-large {
    padding: 2rem;
  }
  .pb-title {
    font-size: 1.75rem;
  }
}

/* ============ ABOUT PAGE REFINEMENTS (HOME STYLE) ============ */
.about-hero-simple {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 9rem 0 5rem;
}

.hero-content-center {
  max-width: 800px;
  margin: 0;
}

.page-title-small {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle-small {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 650px;
  margin: 0;
  line-height: 1.6;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
  padding: 3rem;
  border: 1px solid var(--border-light);
}

.about-hero-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}

.story-grid, .founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.story-featured-card {
  height: 100%;
  justify-content: center;
  padding: 3rem;
}

.story-featured-card .pb-service-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.story-featured-card h3 {
  color: white !important;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.story-featured-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .story-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
  }
  .founder-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.value-card h3 {
  font-size: 1.35rem;
  margin: 1.25rem 0 0.75rem;
  color: var(--text-dark);
  font-weight: 600;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.founder-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-darker);
}

.founder-frame img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-apple);
}

.founder-frame:hover img {
  transform: scale(1.05);
}

.founder-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(to top, rgba(26, 17, 10, 0.95) 0%, transparent 100%);
  color: white;
}

.founder-label h4 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.founder-label span {
  font-size: 0.85rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

@media (max-width: 991px) {
  .hero-image-frame {
    max-width: 300px;
    padding: 2rem;
    margin-top: 2rem;
  }
  .story-grid, .founder-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .about-hero-simple {
    padding: 7rem 0 3rem;
    justify-content: center;
    text-align: center;
  }
  .hero-content-center,
  .hero-subtitle-small {
    margin: 0 auto;
  }
  .page-title-small {
    font-size: 2.25rem;
  }
  .founder-label {
    padding: 1.5rem;
  }
  .founder-label h4 {
    font-size: 1.25rem;
  }
}


/* ============ FLOATING WHATSAPP ============ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.4s var(--ease-apple);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ============ SERVICES PAGE MODERN GRID ============ */
.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card-modern {
  padding: 3rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.service-card-modern h3 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.service-card-modern p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============ CONTACT PAGE MODERN LAYOUT ============ */
.contact-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .contact-grid-modern {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
  }
}

.contact-info-side .section-title {
  margin-bottom: 1.5rem;
}

.contact-methods {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.method-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 140, 66, 0.08);
  color: var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.method-text a, .method-text p {
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.method-text a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.contact-modern-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .contact-modern-form .form-grid {
    grid-template-columns: 1fr;
  }
}

.contact-modern-form .form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-modern-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-modern-form input,
.contact-modern-form select,
.contact-modern-form textarea {
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: var(--bg-darker);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text-dark);
}

.contact-modern-form input:focus,
.contact-modern-form select:focus,
.contact-modern-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 4px var(--accent-glow);
}

@media (max-width: 768px) {
  .services-modern-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-card-modern {
    padding: 2.25rem;
    border-radius: 24px;
  }
  .contact-form-card {
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }
  .contact-methods {
    gap: 1.75rem;
  }
}