/* ========== VARIABLES & RESET ========== */
:root {
  --navy: #1B2A4A;
  --navy-dark: #0F1B33;
  --navy-light: #2D4470;
  --gold: #C8A45A;
  --gold-light: #D4B76A;
  --gray-100: #F7F8FA;
  --gray-200: #E8EBF0;
  --gray-300: #D1D5DE;
  --gray-500: #7A8299;
  --gray-700: #3D4456;
  --gray-900: #1A1D26;
  --white: #FFFFFF;
  --font-main: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.08);
  --shadow-md: 0 8px 30px rgba(27, 42, 74, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 42, 74, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-logo {
  width: 120px;
  margin-bottom: 30px;
  animation: pulse 1.5s infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 3px;
  animation: loadBar 1.8s ease forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ========== HEADER ========== */
.header-top {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-top-right {
  display: flex;
  gap: 20px;
}

.header-top-right a {
  color: rgba(255, 255, 255, 0.7);
}

.header-top-right a:hover {
  color: var(--gold);
}

.header-main {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-main.scrolled {
  box-shadow: var(--shadow-md);
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

.logo img {
  height: 55px;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 8px;
  font-size: 14px;
}

.header-phone i {
  color: var(--gold);
  font-size: 25px;
}

.header-phone span {
  font-weight: 600;
  color: var(--navy);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 27, 51, 0.88) 0%, rgba(27, 42, 74, 0.7) 50%, rgba(15, 27, 51, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 164, 90, 0.15);
  border: 1px solid rgba(200, 164, 90, 0.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.hero-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 35px;
  max-width: 550px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-indicators span {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
}

.hero-indicators span.active {
  background: var(--gold);
  width: 60px;
}

/* ========== FEATURES ========== */
.features {
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  width: 100%;
}

.feature-icon {
  width: 65px;
  height: 65px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--gold);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--white);
}

.feature-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--gray-100);
}

.section-navy {
  background: var(--navy-dark);
  color: var(--white);
}

.section-title {
  margin-bottom: 60px;
}

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

.section-title .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title .badge::before,
.section-title .badge::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title.center .badge::before {
  display: inline-block;
}

.section-title:not(.center) .badge::before {
  display: none;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
}

.section-navy .section-title h2 {
  color: var(--white);
}

.section-title p {
  font-size: 16px;
  color: var(--gray-500);
  margin-top: 15px;
  max-width: 600px;
}

.section-title.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 170px;
  border-radius: 8px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-exp {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-exp h3 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.about-exp span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-list {
  margin: 25px 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-700);
}

.about-list li i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-body {
  padding: 25px;
}

.service-card-body h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========== SECTORS ========== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.sector-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}

.sector-card:hover {
  background: rgba(200, 164, 90, 0.1);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.sector-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

.sector-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== VALUES ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.value-card:hover {
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--gold);
}

.value-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 27, 51, 0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

/* ========== CTA ========== */
.cta {
  position: relative;
  padding: 120px 0;
  background: url('ets-bis-9.jpeg') center/cover no-repeat;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 27, 51, 0.92), rgba(27, 42, 74, 0.85));
}

.cta .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 35px;
}

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  text-align: center;
  position: relative;
}

.process-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-200);
  margin-bottom: 15px;
  line-height: 1;
}

.process-card h3 {
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ========== PARTNERS MESSAGE ========== */
.partners-msg-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.partners-msg-text h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 700;
}

.partners-msg-text p {
  margin-bottom: 20px;
}

.compliance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.compliance-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 8px 12px;
  background: var(--gray-100);
  border-radius: 6px;
}

.compliance-list li i {
  color: var(--gold);
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--gray-100);
  border-radius: 8px;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
}

.contact-info-card .icon {
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 5px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 14px;
  color: var(--gray-500);
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 14px;
  margin-bottom: 15px;
  transition: var(--transition);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.15);
}

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

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-widget h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-widget h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}

.footer-links li {
  padding: 5px 0;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.1);
  }
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold);
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {

  .services-grid,
  .values-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {

  .nav-menu,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .hero {
    min-height: 70vh;
  }

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

  .about-grid,
  .contact-grid,
  .partners-msg-content {
    grid-template-columns: 1fr;
  }

  .about-img-secondary,
  .about-exp {
    display: none;
  }

  .services-grid,
  .values-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .header-top {
    display: none;
  }

  .compliance-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .services-grid,
  .values-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 60px 0;
  }

  .hero-badge {
    font-size: 10px;
    margin-top: 20px;
  }

  .hero-buttons a[href="#contact"] {
    visibility: hidden;
  }

  .features {
    position: unset;
    margin-top: 20px;
  }

  .cta h2 {
    font-size: 1.2rem;
  }
}

.footer-widget img {
  width: 70%;
  margin-bottom: 15px;
}