/*
Theme Name: Hello Mirochina
Template: hello-elementor
Author: Mirochina
Version: 1.0.1
Description: Custom child theme for MiroChina website based on Hello Elementor.
*/

/* ==========================================
   GOOGLE FONTS
========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ==========================================
   CSS VARIABLES
========================================== */
:root {
  --color-dark-900: #0a0a0a;
  --color-dark-800: #111111;
  --color-dark-700: #1a1a1a;
  --color-dark-600: #222222;
  --color-accent: #ff2a2a;
  --color-accent-hover: #ff4444;
  --color-accent-muted: #cc2222;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

/* ==========================================
   BASE RESET
========================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: var(--color-dark-900);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ==========================================
   TYPOGRAPHY
========================================== */
.font-display {
  font-family: var(--font-display);
}

/* ==========================================
   LAYOUT UTILITIES
========================================== */
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }

.pt-20 { padding-top: 5rem; }
.pb-8 { padding-bottom: 2rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }

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

.w-full { width: 100%; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-8 { width: 2rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-auto { width: auto; }

.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-8 { height: 2rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-7 { height: 1.75rem; }
.h-9 { height: 2.25rem; }
.h-full { height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }

.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-dashed { border-style: dashed; }
.border-2 { border-width: 2px; }

.cursor-pointer { cursor: pointer; }

.appearance-none {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.resize-none { resize: none; }

.transition-all { transition-property: all; }
.transition-colors { transition-property: color, background-color, border-color; }
.transition-transform { transition-property: transform; }

.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

.group:hover .group-hover\:text-accent { color: var(--color-accent); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:bg-dark-900\/0 { background-color: transparent; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:opacity-70 { opacity: 0.7; }
.group:hover .group-hover\:translate-x-0 { transform: translateX(0); }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }

.translate-y-2 { transform: translateY(0.5rem); }
.translate-x-2 { transform: translateX(0.5rem); }
.translate-y-0 { transform: translateY(0); }
.translate-x-0 { transform: translateX(0); }
.translate-y-5 { transform: translateY(1.25rem); }

.opacity-0 { opacity: 0; }
.opacity-40 { opacity: 0.4; }
.opacity-100 { opacity: 1; }

.pointer-events-none { pointer-events: none; }

.min-h-\[100dvh\] { min-height: 100dvh; }

.aspect-\[3\/4\] { aspect-ratio: 3/4; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }
.aspect-\[3\/2\] { aspect-ratio: 3/2; }

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* ==========================================
   COLORS & TEXT
========================================== */
.bg-dark-900 { background-color: var(--color-dark-900); }
.bg-dark-800 { background-color: var(--color-dark-800); }
.bg-dark-700 { background-color: var(--color-dark-700); }
.bg-dark-600 { background-color: var(--color-dark-600); }

.bg-accent { background-color: var(--color-accent); }
.bg-accent-hover { background-color: var(--color-accent-hover); }

.text-white { color: #ffffff; }
.text-white\/20 { color: rgba(255,255,255,0.2); }
.text-white\/25 { color: rgba(255,255,255,0.25); }
.text-white\/30 { color: rgba(255,255,255,0.3); }
.text-white\/40 { color: rgba(255,255,255,0.4); }
.text-white\/50 { color: rgba(255,255,255,0.5); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }

.text-accent { color: var(--color-accent); }

.border-white\/5 { border-color: rgba(255,255,255,0.05); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-accent { border-color: var(--color-accent); }
.border-accent\/50 { border-color: rgba(255,42,42,0.5); }

/* ==========================================
   TEXT STYLES
========================================== */
.text-\[10px\] { font-size: 10px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.uppercase { text-transform: uppercase; }

.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-tight { letter-spacing: -0.025em; }

.leading-relaxed { line-height: 1.625; }
.leading-\[0\.9\] { line-height: 0.9; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-tight { line-height: 1.25; }

/* ==========================================
   BACKGROUND UTILITIES
========================================== */
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-dark-900\/90 {
  --tw-gradient-from: rgba(10,10,10,0.9);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(10,10,10,0));
}
.via-dark-900\/50 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(10,10,10,0.5), var(--tw-gradient-to, rgba(10,10,10,0));
}
.to-transparent {
  --tw-gradient-to: transparent;
}

/* ==========================================
   VIDEO BACKGROUND
========================================== */
.video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100vh; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
}
.video-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.65);
  z-index: 1;
}

/* ==========================================
   SCROLL TO TOP BUTTON
========================================== */
.scroll-top {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-top.hidden-btn {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.scroll-top.visible-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   FAB GROUP (Floating Action Buttons)
========================================== */
.fab-group {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================
   ABSTRACT GLOWS
========================================== */
.glow-red {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,42,42,0.05);
  filter: blur(120px);
  pointer-events: none;
}

/* ==========================================
   NAVIGATION
========================================== */
.site-nav {
  transition: background 0.5s ease-out, border-color 0.5s ease-out, padding 0.5s ease-out;
}
.site-nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.site-nav a:hover {
  color: var(--color-accent);
}

.mobile-menu {
  display: none;
  background: var(--color-dark-900);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 1.25rem;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:last-child {
  border-bottom: none;
}

/* ==========================================
   HERO
========================================== */
.hero-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: background-color 0.3s;
}
.hero-btn-primary:hover {
  background: var(--color-accent-hover);
}

.hero-btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: all 0.3s;
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.4);
}

/* ==========================================
   SERVICE CARDS
========================================== */
.service-card .card-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}
.service-card .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.service-card:hover .card-image-wrap img {
  transform: scale(1.1);
}
.service-card .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.2);
  transition: background 0.5s;
}
.service-card:hover .card-overlay {
  background: transparent;
}
.service-card .card-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: transparent;
  font-size: 0.75rem;
  line-height: 1.625;
  transition: all 0.5s;
  transform: translateY(0.5rem);
}
.service-card:hover .card-desc {
  color: rgba(255,255,255,0.8);
  transform: translateY(0);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.service-card:hover h3 {
  color: var(--color-accent);
}

/* ==========================================
   TEAM CARDS
========================================== */
.team-card .card-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}
.team-card .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.team-card:hover .card-image-wrap img {
  transform: scale(1.1);
}
.team-card .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.2);
  transition: background 0.5s;
}
.team-card:hover .card-overlay {
  background: transparent;
}
.team-card .role-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(10,10,10,0.9), rgba(10,10,10,0.5), transparent);
}
.team-card .role-bar p {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.team-card .insta-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(0.5rem);
  transition: all 0.3s;
}
.team-card:hover .insta-btn {
  opacity: 1;
  transform: translateX(0);
}
.team-card .insta-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  transition: color 0.3s;
}
.team-card:hover h3 {
  color: var(--color-accent);
}

/* ==========================================
   CONTACT FORM
========================================== */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.2);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--color-accent);
}
.contact-form select option {
  background: var(--color-dark-900);
  color: #fff;
}
.contact-form label {
  display: block;
  font-size: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.contact-form button[type="submit"] {
  width: 100%;
  padding: 0.875rem 2rem;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form button[type="submit"]:hover {
  background: var(--color-accent-hover);
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.contact-info a:hover {
  color: var(--color-accent);
}
.contact-info .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.contact-info a:hover .icon-box {
  border-color: rgba(255,42,42,0.5);
}

/* ==========================================
   PARTNERS
========================================== */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  width: 100%;
  aspect-ratio: 3/2;
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.partner-logo:hover img {
  opacity: 0.7;
}

/* ==========================================
   SOCIAL FEED PLACEHOLDER
========================================== */
.social-feed-placeholder {
  border: 2px dashed rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  padding: 3rem 1.25rem;
  text-align: center;
}

/* ==========================================
   EXPLORE BUTTON
========================================== */
.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border-radius: 9999px;
  transition: all 0.3s;
  width: fit-content;
}
.explore-btn:hover {
  background: #fff;
  color: var(--color-dark-900);
}

/* ==========================================
   FOOTER
========================================== */
.site-footer {
  background: var(--color-dark-900);
  color: rgba(255,255,255,0.2);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ==========================================
   RESPONSIVE (TABLET 768px+)
========================================== */
@media (min-width: 768px) {
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .md\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-20 { padding: 5rem; }
  .md\:p-5 { padding: 1.25rem; }
  .md\:p-4 { padding: 1rem; }

  .md\:mb-6 { margin-bottom: 1.5rem; }
  .md\:mb-8 { margin-bottom: 2rem; }
  .md\:mb-10 { margin-bottom: 2.5rem; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:mb-14 { margin-bottom: 3.5rem; }
  .md\:mb-16 { margin-bottom: 4rem; }
  .md\:mb-20 { margin-bottom: 5rem; }
  .md\:mt-4 { margin-top: 1rem; }

  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-16 { gap: 4rem; }

  .md\:space-y-6 > * + * { margin-top: 1.5rem; }

  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .md\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-8xl { font-size: 6rem; line-height: 1; }

  .md\:h-8 { height: 2rem; }
  .md\:h-11 { height: 2.75rem; }
  .md\:h-14 { height: 3.5rem; }
  .md\:h-5 { height: 1.25rem; }
  .md\:h-6 { height: 1.5rem; }
  .md\:h-10 { height: 2.5rem; }
  .md\:h-12 { height: 3rem; }

  .md\:w-14 { width: 3.5rem; }
  .md\:w-5 { width: 1.25rem; }
  .md\:w-6 { width: 1.5rem; }
  .md\:w-10 { width: 2.5rem; }
  .md\:w-12 { width: 3rem; }

  .md\:gap-3 { gap: 0.75rem; }

  .md\:rounded-2xl { border-radius: 1rem; }

  .md\:top-4 { top: 1rem; }
  .md\:right-4 { right: 1rem; }

  .md\:pt-14 { padding-top: 3.5rem; }

  .hero-btn-primary,
  .hero-btn-secondary,
  .explore-btn,
  .contact-form button[type="submit"] {
    font-size: 0.875rem;
  }

  .service-card .card-desc {
    padding: 1.25rem;
    font-size: 0.875rem;
  }
  .service-card h3 {
    font-size: 1rem;
  }

  .team-card .role-bar {
    padding: 1.25rem;
  }
  .team-card .insta-btn {
    width: 2.5rem;
    height: 2.5rem;
    top: 1rem;
    right: 1rem;
  }
  .team-card h3 {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 1rem;
  }
  .contact-form label {
    font-size: 0.75rem;
  }

  .contact-info a {
    gap: 1rem;
  }
  .contact-info .icon-box {
    width: 3rem;
    height: 3rem;
  }

  .partner-logo {
    padding: 1rem;
  }

  .social-feed-placeholder {
    padding: 5rem 2rem;
  }

  .site-footer {
    padding: 2rem;
    font-size: 0.75rem;
  }

  .fab-group {
    bottom: 2rem;
    right: 2rem;
  }
}

/* ==========================================
   RESPONSIVE (DESKTOP 1024px+)
========================================== */
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }

  .lg\:py-40 { padding-top: 10rem; padding-bottom: 10rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:p-12 { padding: 3rem; }

  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:gap-20 { gap: 5rem; }

  .lg\:mb-20 { margin-bottom: 5rem; }

  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-9xl { font-size: 8rem; line-height: 1; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

  .lg\:text-base { font-size: 1rem; line-height: 1.5rem; }
}
