/*
 * BPG (Brasov Professional Group) Mirror Stylesheet
 * Custom, lightweight, premium styling replacing 1.35MB WordPress CSS.
 */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #e53509;
  /* Teal-cyan */
  --secondary: black;
  /* Red-orange */
  --accent-pink: #CB1B73;
  /* Pink */
  --dark-bg: #111111;
  --dark-text: #222222;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --gray: #777777;
  --light-gray: #e9ecef;
  --font-title: 'Raleway', sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 90px;
  --header-sticky-height: 70px;
}

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

html,
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.2;
}

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

a:hover {
  color: rgb(229, 53, 9);
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  height: var(--header-height);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 40px;
}

/* Nav Menu Styles */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-menu li {
  position: relative;
  margin: 0 15px;
}

.nav-menu a {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  padding: 10px 0;
  display: block;
}

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

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

/* Logo styling */
.logo-wrapper img {
  height: 60px;
  width: auto;
  transition: var(--transition-smooth);
  display: block;
}

.logo-normal {
  display: block;
}

.logo-dark {
  display: none;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-flag {
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
}

.lang-flag img {
  width: 24px;
  height: auto;
  border-radius: 2px;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.lang-flag:hover img,
.lang-flag.active img {
  opacity: 1;
  transform: scale(1.15);
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); */
  box-shadow: 0 2px 8px rgb(229, 53, 9);
}

/* Menu Opener (Hamburger) */
.fullscreen-menu-opener {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
  cursor: pointer;
  z-index: 110;
  margin-right: 20px;
}

.fullscreen-menu-opener span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

.fullscreen-menu-opener:hover span:nth-child(2) {
  transform: translateX(5px);
}

/* Sticky Header */
.main-header.sticky {
  position: fixed;
  background-color: var(--white);
  height: var(--header-sticky-height);
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
  box-shadow: 0 4px 10px rgb(229, 53, 9);
  animation: slideDown 0.4s ease-out forwards;
}

.main-header.sticky .nav-menu a {
  color: var(--dark-bg);
}

.main-header.sticky .fullscreen-menu-opener span {
  background-color: var(--dark-bg);
}

.main-header.sticky .logo-normal {
  display: none;
}

.main-header.sticky .logo-dark {
  display: block;
}

.main-header.sticky .logo-wrapper img {
  height: 40px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Fullscreen Menu Overlay */
.fullscreen-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.fullscreen-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.fullscreen-menu-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.fullscreen-menu-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

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

.fullscreen-nav ul {
  list-style: none;
}

.fullscreen-nav li {
  margin: 25px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.fullscreen-menu-overlay.active .fullscreen-nav li {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-nav li:nth-child(1) {
  transition-delay: 0.1s;
}

.fullscreen-nav li:nth-child(2) {
  transition-delay: 0.2s;
}

.fullscreen-nav li:nth-child(3) {
  transition-delay: 0.3s;
}

.fullscreen-nav li:nth-child(4) {
  transition-delay: 0.4s;
}

.fullscreen-nav .item-subtitle {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-weight: 500;
}

.fullscreen-nav a {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fullscreen-nav a:hover {
  color: var(--primary);
}

.fullscreen-social {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}

.fullscreen-social a {
  color: var(--white);
  font-size: 20px;
  transition: var(--transition-smooth);
}

.fullscreen-social a:hover {
  color: var(--primary);
}

/* Mobile Header & Nav */
.mobile-header-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--white);
  z-index: 150;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); */
  box-shadow: 0 4px 10px rgb(229, 53, 9);
}

.mobile-logo img {
  height: 35px;
}

.mobile-menu-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 16px;
  cursor: pointer;
}

.mobile-menu-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-bg);
  transition: var(--transition-smooth);
}

.mobile-menu-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-burger.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: var(--white);
  z-index: 140;
  transform: translateX(-100%);
  transition: var(--transition-smooth);
  padding: 40px 20px;
  box-shadow: 0 4px 12px rgb(229, 53, 9);
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links li {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 10px;
}

.mobile-nav-links a {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-bg);
  text-transform: uppercase;
  display: block;
}

.mobile-lang-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-lang-row span {
  font-weight: 600;
  font-size: 14px;
}

/* Custom Slider Component */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 650px;
  width: 100%;
  overflow: hidden;
}

.slide-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
  z-index: 1;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.slide-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.5s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-title {
  font-size: 80px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.slide-btn {
  display: inline-block;
  background-color: var(--white);
  color: var(--dark-bg);
  padding: 15px 40px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* box-shadow: 0 4px 12px rgb(229, 53, 9);
  transition: var(--transition-smooth); */
}

.slide-btn:hover {
  background-color: rgb(229, 53, 9);
  color: var(--white);
  transform: translateY(-3px);
  /* box-shadow: 0 8px 25px rgba(1, 177, 174, 0.4); */
}

.slide-contact-text {
  font-size: 22px;
  font-family: var(--font-body);
}

.slide-phone-link {
  color: var(--white);
  font-weight: 700;
  font-size: 26px;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background-color: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 40px;
}

.slider-arrow.next {
  right: 40px;
}

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

.slider-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-bullet.active,
.slider-bullet:hover {
  background-color: var(--primary);
  width: 25px;
  border-radius: 5px;
}

/* Page Section Banners (Subpages) */
.page-banner {
  height: 430px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

.page-banner-content h1 {
  font-size: 50px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.separator-dotted {
  display: inline-block;
  border-top: 11px dotted var(--white);
  width: 240px;
  opacity: 0.8;
}

.separator-dotted.dark {
  border-top: 11px dotted var(--dark-bg);
}

/* Generic Section Styles */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 800;
}

/* Red-orange banner text block style */
.cta-red-section {
  background-color: var(--secondary);
  color: var(--white);
  padding: 20px 0;
  text-align: center;
}

.cta-red-text {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--white);
}

.cta-red-btn {
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  margin-top: 20px;
}

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

/* Home Section Layouts */
.home-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 30px;
  /* margin-top: -60px; */
  position: relative;
  z-index: 10;
}

.intro-text-card {
  background-color: var(--white);
  /* padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 4px; */
}

.intro-text-card img {
  height: 80px;
  margin-bottom: 30px;
}

.intro-text-card p {
  color: var(--dark-bg);
  margin-bottom: 30px;
  font-size: 15px;
  text-align: justify;
}

.intro-image-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
  box-shadow: 0 4px 12px rgb(229, 53, 9);
  aspect-ratio: 1/1;
}

.intro-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.intro-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 177, 174, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.intro-image-card:hover .intro-image-overlay {
  opacity: 1;
}

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

.intro-image-overlay h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 10px;
}

.intro-image-overlay .sep {
  border-top: 11px dotted var(--white);
  width: 60px;
  margin-bottom: 10px;
}

/* Button style */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-bg);
  font-size: 14px;
}

.btn-arrow span.arrow {
  width: 25px;
  height: 2px;
  background-color: var(--dark-bg);
  position: relative;
  transition: var(--transition-smooth);
}

.btn-arrow span.arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--dark-bg);
  border-top: 2px solid var(--dark-bg);
  transform: rotate(45deg);
}

.btn-arrow:hover {
  color: var(--primary);
}

.btn-arrow:hover span.arrow {
  background-color: var(--primary);
  width: 35px;
}

.btn-arrow:hover span.arrow::after {
  border-color: var(--primary);
}

/* Services Grid (8 Cards) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* gap: 30px; */
  margin-top: 40px;
}

.service-card {
  background-color: var(#e53509);
  color: var(--white);
  padding: 40px 30px;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 15px 30px white; */
  box-shadow: 0 4px 12px rgb(229, 53, 9);
}

.service-icon {
  font-size: 50px;
  color: var(--white);
  margin-bottom: 25px;
}

.service-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.service-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Partners Section Layout */
.partners-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

.partner-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.partner-image-wrapper img {
  width: 100%;
  border-radius: 4px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06); */
  box-shadow: 0 4px 12px rgb(229, 53, 9);
  transition: var(--transition-smooth);
}

.partner-image-wrapper:hover img {
  transform: scale(1.02);
}

.partner-info h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.partner-info p {
  color: var(--gray);
  margin-bottom: 15px;
  text-align: justify;
}

/* subpages layouts */
.content-section {
  padding: 80px 0;
}

/* Despre Noi Team details layout */
.team-gallery-title {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 80px;
}

.team-image-container {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgb(229, 53, 9);
  margin-bottom: 30px;
}

.team-image-container img {
  width: 100%;
  display: block;
}

.team-names-block {
  text-align: center;
  background-color: var(--light-bg);
  padding: 40px;
  border-radius: 4px;
}

.team-names-block h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.team-names-block p {
  font-size: 18px;
  color: var(--dark-bg);
  font-weight: 600;
  margin-bottom: 25px;
}

/* Testimonials page styling */
/* .testimonials-grid {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 40px;
} */

/* .testimonial-item {
  background-color: var(--light-bg);
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
} */

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary);
}

/* Contact page styling */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.contact-info-block h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-info-block p {
  color: var(--gray);
  margin-bottom: 25px;
  font-size: 16px;
}

.contact-form-block h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

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

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

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

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  /* box-shadow: 0 0 0 3px rgba(1, 177, 174, 0.15); */
  box-shadow: 0 4px 12px rgb(229, 53, 9);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-file-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--gray);
}

.form-file-input {
  padding: 10px 0;
}

.form-submit-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: var(--transition-smooth);
}

.form-submit-btn:hover {
  background-color: var(--accent-pink);
  /* box-shadow: 0 4px 15px rgba(203, 27, 115, 0.3); */
  box-shadow: 0 4px 12px rgb(229, 53, 9);
}

/* Footer Section */
footer {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column img {
  max-width: 180px;
}

.footer-column h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 800;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
}

.social-share-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.social-share-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-smooth);
}

.social-share-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 30px 0;
  font-size: 13px;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-bottom-links a {
  color: #e53509;
}

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

.gdpr-trigger-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.gdpr-trigger-btn img {
  width: 32px;
  height: auto;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.gdpr-trigger-btn:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* GDPR Modal Styles */
.gdpr-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.gdpr-modal.active {
  opacity: 1;
  visibility: visible;
}

.gdpr-modal-content {
  background-color: var(--white);
  width: 90%;
  max-width: 600px;
  padding: 40px;
  border-radius: 8px;
  position: relative;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25); */
  box-shadow: 0 4px 12px rgb(229, 53, 9);
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.gdpr-modal.active .gdpr-modal-content {
  transform: scale(1);
}

.gdpr-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: var(--dark-bg);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gdpr-modal-close:hover {
  color: var(--secondary);
}

.gdpr-modal h2 {
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 10px;
}

.gdpr-modal-text {
  font-size: 14px;
  color: var(--dark-text);
  line-height: 1.6;
}

.gdpr-modal-text h3 {
  font-size: 16px;
  margin: 15px 0 5px 0;
}

.gdpr-modal-text ul {
  padding-left: 20px;
  margin: 10px 0;
}

/* Page transitions, helper classes */
.text-center {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-intro-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .intro-image-card {
    aspect-ratio: 2/1;
  }

  .slide-title {
    font-size: 50px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-column p {
    text-align: center;
  }

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

@media (max-width: 768px) {
  .main-header {
    display: none;
  }

  .mobile-header-bar {
    display: flex;
  }

  .mobile-drawer {
    display: block;
  }

  body {
    padding-top: 60px;
  }

  .hero-slider {
    height: calc(100vh - 60px);
    min-height: 500px;
  }

  .slide-title {
    font-size: 36px;
  }

  .slide-phone-link {
    font-size: 20px;
  }

  .slider-arrow {
    display: none;
    /* Hide arrows on mobile, bullets suffice */
  }

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

  .partner-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  /* .testimonials-grid {
    grid-template-columns: 1fr;
  } */

  .page-banner {
    height: 300px;
  }

  .page-banner-content h1 {
    font-size: 32px;
  }
}

/* ============================
   SERVICES PAGE — CLEAN VERSION
   ============================ */

/* Title + intro */
.services-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.services-intro {
  font-size: 16px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 50px auto;
}

/* ============================
   4‑COLUMN ALTERNATING LAYOUT
   ============================ */

.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  align-items: center;
  /* aligns images + text vertically */
}

/* Image block */
.srv-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

/* Text block */
.srv-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* vertical centering */
  padding: 0 10px;
}

.srv-desc h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.srv-desc p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ============================
   RESPONSIVE
   ============================ */

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

  .srv-img img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .services-row {
    grid-template-columns: 1fr;
  }

  .srv-img img {
    height: 250px;
  }
}

/* =============================================
   Testimonials 
   ============================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-item {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  /* box-shadow: 0 4px 12px rgb(229, 53, 9); */
  box-shadow: 0 4px 12px rgb(229, 53, 9);
}

.testimonial-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 5%;
  margin-bottom: 30px;
  /* box-shadow: 0 4px 12px rgb(229, 53, 9); */
  /* border: 1px solid rgb(229, 53, 9); */
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial-author {
  font-weight: bold;
  font-size: 14px;
  color: #444;
}

/* aviation page */

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

.aviation-row {
  display: flex;
  gap: 20px;
  /* space between images */
  margin-bottom: 20px;
  /* space between rows */
}

.aviation-col {
  flex: 1;
  /* 2 equal columns */
}

.aviation-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .aviation-row {
    flex-direction: column;
  }
}

/* GDPR */

.gdpr-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.gdpr-content {
  background: #fff;
  width: 90%;
  max-width: 450px;
  margin: 80px auto;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  text-align: center;
}

.gdpr-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 26px;
  cursor: pointer;
}

.gdpr-box {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
  text-align: left;
}

.gdpr-link {
  display: block;
  margin-bottom: 20px;
  color: red;
  font-weight: 600;
}

.gdpr-disagree {
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.gdpr-trigger-btn img {
  width: 32px;
  height: 32px;
  cursor: pointer;
}