/* ===========================
   GIL INVESTIGATIONS - CSS
   Dark Premium Design
   =========================== */

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #CFA674;
  --gold-light: #e4c49a;
  --gold-dark: #a8824a;
  --dark-950: #050709;
  --dark-900: #0a0c10;
  --dark-800: #10141c;
  --dark-700: #161b26;
  --dark-600: #1e2535;
  --dark-500: #252d42;
  --text-primary: #f0f0f0;
  --text-secondary: #9aa0b0;
  --text-muted: #5a6070;
  --border: rgba(207, 166, 116, 0.12);
  --border-hover: rgba(207, 166, 116, 0.35);
  --gradient-gold: linear-gradient(135deg, #CFA674, #e4c49a, #a8824a);
  --gradient-dark: linear-gradient(135deg, #0a0c10, #161b26);
  --shadow-gold: 0 0 40px rgba(207, 166, 116, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-hebrew: 'Rubik', 'Heebo', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-hebrew);
  background: var(--dark-900);
  color: var(--text-primary);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--dark-900);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 10px;
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(207, 166, 116, 0.3);
  color: var(--text-primary);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-hebrew);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #0a0c10;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(207, 166, 116, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(207, 166, 116, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: rgba(207, 166, 116, 0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(207, 166, 116, 0.1);
  border: 1px solid var(--border);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.section-title {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Fix for mobile menu trapped in scrolled navbar stacking context */
body.nav-open .navbar {
  backdrop-filter: none !important;
  background: transparent !important;
  border-bottom: none !important;
  z-index: 3000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-action-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: rgba(207, 166, 116, 0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.logo-icon:hover {
  background: rgba(207, 166, 116, 0.2);
}

.owl-logo-img {
  width: 32px;
  height: 32px;
  display: block;
  opacity: 0.92;
  transition: var(--transition);
}

.logo-icon:hover .owl-logo-img {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(207, 166, 116, 0.5));
}



.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  white-space: nowrap;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.3rem;
  background: var(--gradient-gold);
  color: #0a0c10;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  margin-right: 0.5rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(207, 166, 116, 0.4);
}

/* ===== LANG SWITCHER ===== */
.lang-switcher {
  margin-left: 0.5rem;
  padding: 0 0.5rem;
  border-left: 1px solid var(--border);
}

.lang-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.lang-link:hover {
  color: var(--text-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  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);
}

/* ===== DROPDOWN NAV ===== */
.nav-item.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-toggle svg {
  transition: transform var(--transition);
}

.nav-item.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: rgba(10, 12, 16, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
}

/* Show on hover for desktop */
@media (min-width: 769px) {
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.dropdown-item:hover {
  background: rgba(207, 166, 116, 0.1);
  color: var(--text-primary);
  padding-right: 1.5rem;
  /* Slight indent on hover */
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #050709;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('institutional_bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  /* Increased visibility */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(5, 7, 9, 0.4) 0%,
      rgba(5, 7, 9, 0.7) 100%);
  /* Lighter overlay */
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 100px;
  /* Lower the content */
  width: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-central-logo {
  width: clamp(188px, 30vw, 338px);
  height: auto;
  margin-bottom: -4.5rem;
  /* Severe negative margin to pull title onto the bottom part of the logo */
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.1));
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-title {
  margin-top: 0;
  margin-bottom: 0.2rem;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards 0.3s;
}

.hero-title-line {
  display: block;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 800;
  /* Match logo-main */
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: 0.12em;
  /* Tighter tracking like header */
  text-transform: uppercase;
}

.hero-separator {
  display: none;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  max-width: 800px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards 0.6s;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1s;
}

.scroll-indicator {
  display: none;
}

/* ===== ABOUT ===== */
.about {
  background: var(--dark-800);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(207, 166, 116, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-image-card {
  position: relative;
  width: 320px;
  height: 320px;
}

.about-img-frame {
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--dark-700), var(--dark-600));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(207, 166, 116, 0.08), transparent 70%);
}

.about-magnifier {
  position: relative;
  z-index: 1;
}

.about-years-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gradient-gold);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-gold);
}

.years-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0a0c10;
  line-height: 1;
}

.years-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(10, 12, 16, 0.7);
  white-space: nowrap;
}

.about-content .section-label {
  margin-bottom: 1rem;
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

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

.pillar {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--dark-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.pillar:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pillar:last-child {
  grid-column: 1 / -1;
}

.pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.pillar p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 0.4rem 1.2rem;
  align-items: start;
  height: 100%;
  box-sizing: border-box;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(207, 166, 116, 0.04), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  background: var(--dark-700);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), var(--shadow-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  background: rgba(207, 166, 116, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-bottom: 0;
}

.service-card:hover .service-icon {
  background: rgba(207, 166, 116, 0.15);
  border-color: var(--border-hover);
}

.service-title {
  grid-column: 2;
  grid-row: 1;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  align-self: end;
}

.service-desc {
  grid-column: 2;
  grid-row: 2;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0;
  align-self: start;
}

.service-en {
  display: none;
}

.service-cta {
  display: none;
}

a.service-card {
  color: inherit;
  text-decoration: none;
  display: grid;
  height: 100%;
}


/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-600), var(--dark-500));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.cta-text p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(207, 166, 116, 0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: rgba(207, 166, 116, 0.18);
  border-color: var(--border-hover);
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-value {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

a.contact-value:hover {
  color: var(--gold);
}

.contact-value-sm {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-en {
  font-style: italic;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--dark-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-800);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-hebrew);
  transition: var(--transition);
  outline: none;
  direction: inherit;
  width: 100%;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(207, 166, 116, 0.1);
  background: var(--dark-700);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-800);
}

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

.form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
}

.form-success {
  display: none;
  background: rgba(100, 200, 100, 0.1);
  border: 1px solid rgba(100, 200, 100, 0.3);
  color: #80d080;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-success.show {
  display: block;
}

/* ===== SOCIAL LINK ===== */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  margin-top: 0.3rem;
}

.social-link:hover {
  color: var(--gold-light);
  transform: translateX(-3px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-950);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links-col a,
.footer-contact-col a,
.footer-contact-col p {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer-links-col a:hover,
.footer-contact-col a:hover {
  color: var(--text-secondary);
  transform: translateX(-4px);
}

.footer-contact-col p {
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

.reveal-delay-7 {
  transition-delay: 0.7s;
}

.reveal-delay-8 {
  transition-delay: 0.8s;
}

.reveal-delay-9 {
  transition-delay: 0.9s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }

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

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

  .about-visual {
    display: none;
  }

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

@media (max-width: 992px) {
  .section {
    padding: 70px 0;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .hero-central-logo {
    width: clamp(140px, 45vw, 180px);
    margin-bottom: -1.5rem;
  }

  .hero-title-line {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    letter-spacing: 0.05em;
  }

  .nav-container {
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 7, 9, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 2000;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.15rem;
    padding: 0.6rem 1.5rem;
  }

  .nav-cta {
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
  }

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

  .hero-central-logo {
    width: 160px;
    margin-bottom: -1.2rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
  }

  .hero-title-line {
    font-size: 1.45rem;
    letter-spacing: 0.1em;
    font-weight: 700;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: 0.8rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

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

  .service-card {
    padding: 0.8rem;
    gap: 0.3rem 0.8rem;
  }

  .service-icon {
    width: 38px;
    height: 38px;
  }

  .service-icon svg {
    width: 20px;
    height: 20px;
  }

  .service-title {
    font-size: 0.95rem;
  }

  .service-desc {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

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

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

  .pillar:last-child {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-central-logo {
    width: 130px;
    margin-bottom: -1rem;
  }

  .accessibility-fab {
    bottom: 1rem;
    left: 1rem;
    width: 44px;
    height: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }
}