:root {

  --color-orange: #C84B16;       
  --color-orange-dark: #A0380F;   
  --color-navy: #0A2240;           
  --color-navy-dark: #112E51;
  --color-black: #111827;
  --color-white: #FFFFFF;
  --color-off-white: #FCFCFC;
  --color-light-gray: #F5F7FA;
  --color-border-gray: #E5E7EB;   
  --font-heading: 'Cairo', 'Outfit', sans-serif;
  --font-body: 'Cairo', 'Outfit', sans-serif;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden; 
  width: 100%;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-heading);
  font-weight: 700;
}

html[dir="rtl"] body {
  text-align: right;
}
html[dir="ltr"] body {
  text-align: left;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed) ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


.top-bar {
  background: var(--color-navy);
  padding: 8px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1001;
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
}

.top-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.top-social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  transition: all var(--transition-speed) ease;
}

.top-social-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-white);
  fill: none;
  transition: transform var(--transition-speed) ease;
}

.top-social-icon:hover {
  background: var(--color-orange);
  transform: translateY(-2px);
}

.top-social-icon:hover svg {
  transform: scale(1.1);
  stroke: var(--color-white);
  fill: var(--color-white);
}

.top-bar .custom-lang-btn {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--color-white);
}

.top-bar .custom-lang-btn:hover {
  border-color: var(--color-orange);
  background: var(--color-orange);
  color: var(--color-white);
}

.top-bar .custom-lang-dropdown {
  top: 130%;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-speed) ease;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  padding: 4px;
  box-sizing: border-box;
  transition: transform var(--transition-speed) ease;
}

.logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo:hover .logo-container {
  transform: scale(1.05);
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-navy);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 11px;
  color: #777777;
  margin-top: 2px;
}

.navbar {
  display: flex;
  gap: 30px;
  align-items: center;
}

.navbar a {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-black);
  position: relative;
  padding: 8px 0;
}

.navbar a:hover {
  color: var(--color-orange);
  transform: translateY(-2px);
}

.navbar a.active {
  color: var(--color-orange);
}

.navbar a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-orange);
  border-radius: 2px;
}


.custom-lang-box {
  position: relative;
}

.custom-lang-btn {
  border: 1.8px solid var(--color-orange);
  background: var(--color-white);
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-orange);
  transition: all var(--transition-speed) ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.custom-lang-btn:hover {
  border-color: var(--color-orange-dark);
  color: var(--color-white);
  background: var(--color-orange);
}

.lang-toggle-checkbox {
  display: none;
}

.custom-lang-dropdown {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border-gray);
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  z-index: 1050;
  overflow: hidden;
  animation: slideDown 0.25s ease forwards;
}

html[dir="rtl"] .custom-lang-dropdown {
  right: auto;
  left: 0;
}

.lang-toggle-checkbox:checked ~ .custom-lang-dropdown {
  display: block;
}

.custom-lang-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-black);
  border-bottom: 1px solid var(--color-light-gray);
}

.custom-lang-dropdown a:last-child {
  border-bottom: none;
}

.custom-lang-dropdown a:hover {
  background: var(--color-orange) !important;
  color: var(--color-white) !important;
  transform: none !important;
  padding-left: 16px !important;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-toggle-checkbox {
  display: none;
}

.menu-toggle-label {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--color-black);
  padding: 5px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--color-orange);
  background: var(--color-orange);
  color: var(--color-white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 20px rgba(200, 75, 22, 0.35);
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
}

.btn-view-gallery-custom {
  background: transparent !important;
  border: none !important;
  color: var(--color-orange) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 6px 12px !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: none !important;
  transform: none !important;
  cursor: pointer;
  transition: color 0.25s ease;
}

.btn-view-gallery-custom:hover {
  color: var(--color-orange-dark) !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: translateX(3px) !important; 
}

.section {
  padding: 80px 40px;
}

.section-light-blue {
  background: var(--color-light-gray);
}

.section h1, .section h2 {
  color: var(--color-black);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}

.section h1 span, .section h2 span {
  color: var(--color-orange);
}


.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 70px 40px 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-grid h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-orange);
}

html[dir="rtl"] .footer-grid h4::after {
  left: auto;
  right: 0;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li {
  margin-bottom: 12px;
}

.footer-grid ul li a {
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-speed) ease;
}

.footer-grid ul li a:hover {
  opacity: 1;
  color: var(--color-orange);
  transform: translateX(8px);
}

html[dir="rtl"] .footer-grid ul li a:hover {
  transform: translateX(-8px);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.06);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-white);
  fill: none;
  transition: transform var(--transition-speed) ease;
}

.footer-socials a:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(200, 75, 22, 0.3);
}

.footer-socials a:hover svg {
  transform: scale(1.15);
  stroke: var(--color-white);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  opacity: 0.7;
}


.floating-contact-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

html[dir="rtl"] .floating-contact-actions {
  right: auto;
  left: 25px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  outline: none;
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
  stroke-width: 2px;
}

.floating-btn.whatsapp-floating {
  background-color: #25D366;
}

.floating-btn.call-floating {
  background-color: var(--color-orange);
}

.floating-btn:hover {
  transform: scale(1.15) translateY(-5px);
  filter: brightness(1.1);
}

.hero {
  position: relative;
  text-align: center;
  padding: 10px 20px 120px;
  background-image: linear-gradient(180deg, rgba(10, 34, 64, 0.85) 0%, rgba(17, 24, 39, 0.95) 100%), 
                    url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
  overflow: hidden;
}

.hero .hero-logo {
  max-width: 550px;
  margin: 0 auto 5px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  animation: heroLogoFade 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroLogoFade {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  margin-bottom: 35px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUpText 1s ease-out forwards;
}

.hero h1 span {
  color: var(--color-orange);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUpText 1.2s ease-out forwards;
}

@keyframes fadeInUpText {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}



.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 60px 40px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border-gray);
  border-bottom: 1px solid var(--color-border-gray);
}

.stat-item {
  border-inline-start: 1px solid var(--color-border-gray);
  transition: all 0.4s ease;
}
.stat-item:first-child { border-inline-start: none; }

.stat-number {
  font-size: 50px;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1.1;
  transition: transform 1.2s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.stat-label {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  opacity: 0.8;
}


.custom-who-we-are {
  background-color: var(--color-orange) !important;
  color: var(--color-white) !important;
}

.custom-who-we-are h2, 
.custom-who-we-are h2 span, 
.custom-who-we-are .eyebrow,
.custom-who-we-are .link-arrow,
.custom-who-we-are .link-arrow .arrow-circle {
  color: var(--color-white) !important;
}

.custom-who-we-are .eyebrow::before {
  background: var(--color-white) !important;
}

.custom-who-we-are .link-arrow .arrow-circle {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid var(--color-white) !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-orange);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--color-orange);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.split-section > div {
  flex: 1 1 450px;
  min-width: 300px;
}

.split-section img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-black);
  margin-top: 10px;
}

.link-arrow .arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-speed) ease;
}

.link-arrow:hover .arrow-circle {
  transform: translateX(5px);
}

.why-choose {
  text-align: center;
}

.why-choose h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.why-choose > p {
  max-width: 650px;
  margin: 0 auto 50px;
  opacity: 0.75;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: start;
}

.why-item .why-icon {
  width: 50px;
  height: 50px;
  color: var(--color-orange);
  margin-bottom: 15px;
}

.why-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 14px;
  opacity: 0.7;
}

.portfolio-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}

.portfolio-slide-viewport {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
}

.portfolio-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.portfolio-slide.active {
  opacity: 1;
}

.portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-caption {
  position: absolute;
  bottom: 25px;
  inset-inline-start: 25px;
  inset-inline-end: 25px;
  color: var(--color-white);
}

.portfolio-caption .loc {
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.portfolio-caption h3 {
  font-size: 26px;
  max-width: 80%;
}

.slide-arrow-btn {
  position: absolute;
  bottom: 25px;
  inset-inline-end: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}


.carousel-section {
  text-align: center;
}

.carousel-section h2 {
  color: var(--color-orange);
  display: inline-block;
  position: relative;
  margin-bottom: 50px;
}

.carousel-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-orange);
  margin: 12px auto 0;
}

.carousel-track-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 30px;
  overflow: hidden;
}

.carousel-item {
  flex: 0 0 calc((100% - 60px) / 3);
}

.carousel-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
  transition: transform var(--transition-speed) ease;
}

.carousel-item:hover img {
  transform: scale(1.04);
}

@keyframes carouselEnter {
  from { opacity: 0; transform: translateY(15px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.carousel-item-enter {
  animation: carouselEnter 0.5s ease;
}

.carousel-item .item-title {
  font-weight: 600;
  font-size: 15px;
}

.carousel-item .item-sub {
  font-size: 13px;
  opacity: 0.6;
}

.carousel-nav-btn {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.carousel-nav-btn.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.carousel-prev { inset-inline-start: -55px; }
.carousel-next { inset-inline-end: -55px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.carousel-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-light-gray);
  transition: background var(--transition-speed) ease, width var(--transition-speed) ease;
  cursor: pointer;
}

.carousel-dots span.active {
  background: var(--color-orange);
  width: 22px;
  border-radius: 4px;
}

.quote-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color: var(--color-orange);
  margin: 0 auto;
}

.quote-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
}

.quote-banner .quote-content {
  position: relative;
  z-index: 1;
}

.quote-banner img {
  width: 40px;
  margin: 0 auto 20px;
}

.quote-banner p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  max-width: 800px;
}


.testimonials {
  text-align: center;
}

.testimonial-stars {
  color: var(--color-orange);
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.6s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-slide blockquote {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  max-width: 750px;
  margin: 0 auto 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; 
}

.testimonial-img-wrapper {
  position: relative;
  width: 85px;  
  height: 85px;  
  border-radius: 50%;
  padding: 4px; 
  border: 3px solid var(--color-orange); 
  background: var(--color-white);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.testimonial-author:hover .testimonial-img-wrapper {
  transform: translateY(-4px); 
}

.testimonial-author:hover .testimonial-img-wrapper img {
  transform: scale(1.12) translateY(-2px); 
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: start;
}

.testimonial-author .name {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-orange) !important;
  margin-bottom: 2px;
}

.testimonial-author .role {
  font-size: 13px;
  opacity: 0.7;
}


.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border-gray);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background: var(--color-white);
  transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.faq-item:hover, .faq-item.open {
  border-color: var(--color-orange);
  box-shadow: 0 4px 15px rgba(200, 75, 22, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-navy);
  transition: color var(--transition-speed) ease;
}

.faq-item:hover .faq-question {
  color: var(--color-orange);
}

.faq-question .faq-icon {
  color: var(--color-orange);
  font-size: 14px;
  transition: transform var(--transition-speed) ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition-speed) ease;
  padding: 0 24px;
  font-size: 14px;
  opacity: 0.8;
  color: var(--color-black);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px;
}

.page-hero {
    background-color: #0f2a4a;
    color: #ffffff;
    text-align: center;
    padding: 70px 20px 50px 20px;
}

.hero-badge {
    background-color: #d8511e; 
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: #cbd5e1;
}





.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-gray);
  border-radius: 10px;
  padding: 35px 20px;
  text-align: center;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.info-card:hover {
  transform: translateY(-10px) scale(1.06);
  box-shadow: 0 20px 35px rgba(0,0,0,0.1);
  z-index: 2;
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
}

.info-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  margin-bottom: 12px;
}

.info-card .info-line {
  font-size: 14px;
  margin-bottom: 8px;
}

.info-card .info-label {
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-form-box {
  background: var(--color-white);
  border: 1px solid var(--color-border-gray);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-box h2 {
  color: var(--color-orange);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group label .required-star {
  color: var(--color-orange);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border-gray);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn-submit-custom {
  background-color: var(--color-orange) !important;
  border-color: var(--color-orange) !important;
  color: var(--color-white) !important;
  transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.btn-submit-custom:hover {
  background-color: var(--color-orange-dark) !important;
  border-color: var(--color-orange-dark) !important;
  transform: translateY(-2px);
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-gray);
  border-radius: 10px;
  padding: 35px 20px;
  text-align: center;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.contact-card-animate {
  opacity: 0.7;
  transform: scale(0.95) translateY(15px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.contact-card-animate.is-visible {
  opacity: 1;
  transform: scale(1.04) translateY(0);
}

.contact-card .contact-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all var(--transition-speed) ease;
  padding: 15px;
}

.contact-card .contact-icon.icon-phone {
  background: rgba(200, 75, 22, 0.1);
  color: var(--color-orange);
}
.contact-card:hover .contact-icon.icon-phone {
  background: var(--color-orange);
  color: var(--color-white);
}

.contact-card .contact-icon.icon-email {
  background: rgba(10, 34, 64, 0.1);
  color: var(--color-navy);
}
.contact-card:hover .contact-icon.icon-email {
  background: var(--color-navy);
  color: var(--color-white);
}

.contact-card .contact-icon.icon-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}
.contact-card:hover .contact-icon.icon-whatsapp {
  background: #25D366;
  color: var(--color-white);
}

.contact-card .contact-icon.icon-hours {
  background: rgba(119, 119, 119, 0.1);
  color: #555555;
}
.contact-card:hover .contact-icon.icon-hours {
  background: #555555;
  color: var(--color-white);
}

.contact-card .contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-card .contact-line {
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-card .contact-line .label {
  color: var(--color-orange);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-top: 10px;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid var(--color-border-gray);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}


.validation-bubble {
  position: absolute;
  bottom: -32px;
  left: 10px;
  background-color: #e53e3e;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  animation: fadeInBubble 0.25s ease-out forwards;
}

.validation-bubble::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 15px;
  border-width: 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent #e53e3e;
}

.error-field {
  border: 1.5px solid #e53e3e !important;
  background-color: #fff5f5 !important;
}

@keyframes fadeInBubble {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}


.testimonials-slider-wrapper {
  position: relative;
  min-height: 280px;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.js-custom-testimonial-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
  box-sizing: border-box;
  padding: 0 15px;
}

.js-custom-testimonial-slide.active {
  opacity: 1 !important;
  transform: scale(1) !important;
  pointer-events: auto !important;
  z-index: 2 !important;
}

.js-custom-testimonial-slide.slide-exiting {
  opacity: 0 !important;
  transform: scale(0.7) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}


.partner-carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
}

.partner-viewport {
  overflow: hidden;
  width: 100%;
}

.partners-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  width: 100%;
  min-height: 340px;
}

.partner-item {
  flex: 1;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.partner-item.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  display: flex;
}

.partner-img-box {
  width: 300px;
  height: 300px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--color-border-gray);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: transform var(--transition-speed) ease,
              box-shadow var(--transition-speed) ease;
}

.partner-img-box:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.partner-img-box img {
  max-width: 90% !important;
  max-height: 90% !important;
  object-fit: contain !important;
  image-rendering: -webkit-optimize-contrast !important;
  image-rendering: crisp-edges !important;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .carousel-track-wrapper {
    position: relative !important;
    padding: 0 45px !important;
  }

  .carousel-nav-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .carousel-item {
    padding: 8px !important;
    margin: 0 auto !important;
    max-width: 100% !important;
  }

  .carousel-item img {
    max-height: 130px !important;
    width: auto !important;
    max-width: 90% !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .carousel-section {
    padding: 40px 10px !important;
  }

  .carousel-section h2 {
    font-size: 22px !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .top-bar {
    padding: 8px 20px !important;
  }

  .top-bar-container {
    flex-direction: column !important;
    gap: 10px !important;
    justify-content: center !important;
  }

  .top-socials {
    width: 100% !important;
    justify-content: center !important;
  }

  .top-lang-switcher {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .site-header {
    flex-direction: row !important;
    align-items: center !important;
    padding: 10px 20px !important;
  }

  .logo {
    width: auto !important;
    margin-right: auto !important;
  }
  
  html[dir="rtl"] .logo {
    margin-right: 0 !important;
    margin-left: auto !important;
  }

  .brand-title {
    font-size: 15px !important;
  }
  
  .brand-subtitle {
    font-size: 9px !important;
  }

  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-white);
    padding: 25px;
    border-top: 1px solid var(--color-border-gray);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    gap: 15px;
    align-items: stretch;
  }
  
  .navbar a {
    width: 100%;
    padding: 10px 15px;
    border-radius: 6px;
  }
  
  .navbar a:hover {
    background: var(--color-light-gray);
    padding-left: 20px;
  }

  .menu-toggle-label {
    display: block;
    order: 3;
  }

  .menu-toggle-checkbox:checked ~ .navbar {
    display: flex;
  }

  .service-card .service-img {
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: brightness(0.4) !important;
  }

  .service-card .service-content h3,
  .service-card .service-content p,
  .service-card .service-num {
    color: var(--color-white) !important;
  }

  .footer-grid,
  .why-grid,
  .info-cards-grid,
  .partners-grid,
  .certificates-grid,
  .equipment-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .split-section {
    grid-template-columns: 1fr !important;
  }
  .portfolio-wrapper {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 20px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    row-gap: 35px;
    padding: 40px 20px;
  }

  .stat-item {
    border-inline-start: none;
    border-bottom: 1px solid var(--color-border-gray);
    padding-bottom: 20px;
  }
  
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .carousel-item {
    flex: 0 0 100%;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .split-section {
    flex-direction: column !important;
    text-align: center;
  }

  .split-section > div {
    width: 100%;
  }

  .testimonials-slider-wrapper {
    min-height: 350px; 
  }

  .testimonials {
    padding: 40px 20px !important;
  }

  .js-custom-testimonial-slide blockquote {
    font-size: 16px !important;
    line-height: 1.5;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center !important;
    gap: 14px !important;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 12px 20px;
  }
  
  .section {
    padding: 40px 20px;
  }
  
  .contact-cards,
  .info-cards-grid,
  .why-grid,
  .partners-grid,
  .certificates-grid,
  .equipment-grid {
    grid-template-columns: 1fr !important;
  }

  .carousel-track-wrapper {
    padding: 0 35px !important;
  }

  .carousel-nav-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
  }

  .carousel-item img {
    max-height: 100px !important;
  }
  
  .carousel-section h2 {
    font-size: 20px !important;
  }
  
  .partner-carousel-container {
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .site-header .logo img {
    height: 42px;
  }
  
  .floating-contact-actions {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .floating-btn {
    width: 46px;
    height: 46px;
  }
}

.carousel-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden; 
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    width: 100%;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
    opacity: 1;
}

.carousel-track.switching {
    opacity: 0;
    transform: scale(0.95);
}

.carousel-item {
    flex: 0 0 calc((100% - 40px) / 3); 
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

@media (max-width: 991px) {
    .carousel-item {
        flex: 0 0 100% !important; 
    }
}

.carousel-nav-btn {
    cursor: pointer;
    z-index: 10;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    width: 100%;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dots .dot.active {
    background-color: #ff5e00; 
    transform: scale(1.25);
}

html body .hero-buttons a.btn.btn-orange,
html body .hero-buttons .btn-orange {
    background-color: rgb(200, 75, 22) !important;
    border: 2px solid rgb(200, 75, 22) !important;
    color: #ffffff !important;
    background-image: none !important;
    display: inline-block;
    transition:
        transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.3s ease,
        box-shadow 0.3s ease !important;
}

html body .hero-buttons a.btn.btn-orange:hover,
html body .hero-buttons .btn-orange:hover {
    background-color: rgb(220, 90, 35) !important; 
    border-color: rgb(220, 90, 35) !important;
    color: #ffffff !important;
    transform: scale(1.05) translateY(-3px) !important; 
    box-shadow: 0 10px 25px rgba(200, 75, 22, 0.5) !important;
}



html body .services-section a.btn.btn-outline,
html body a.btn.btn-outline,
html body .portfolio-section a.btn.btn-orange,
html body .portfolio-section .btn {
    background-color: transparent !important;
    border: 2px solid rgb(200, 75, 22) !important; 
    color: rgb(200, 75, 22) !important; 
    background-image: none !important;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                background-color 0.3s ease, 
                color 0.3s ease, 
                box-shadow 0.3s ease !important;
}

html body .services-section a.btn.btn-outline:hover,
html body a.btn.btn-outline:hover,
html body .portfolio-section a.btn.btn-orange:hover,
html body .portfolio-section .btn:hover {
    background-color: rgb(200, 75, 22) !important;
    border-color: rgb(200, 75, 22) !important;
    color: #ffffff !important; 
    transform: scale(1.05) translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(200, 75, 22, 0.3) !important;
}

.contact-social-wide-full {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0 auto; 
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    box-sizing: border-box;
}

.contact-social-wide-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.social-card-inner-full {
    width: 100%;
}

.company-brand-meta-full {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.real-brand-logo-full {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: #f7fafc;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.real-brand-logo-full svg {
    width: 100%;
    height: 100%;
}

.brand-text-details-full h3 {
    margin: 0 0 4px 0;
    font-size: 22px;
    color: #2d3748;
    font-weight: 700;
}

.brand-text-details-full p {
    margin: 0;
    font-size: 13px;
    color: #718096;
}

.separator-line-full {
    height: 1px;
    background: #e2e8f0;
    width: 100%;
    margin: 20px 0;
}

.social-networks-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.network-item-full {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
    box-sizing: border-box;
}

.network-item-full svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.network-item-full:hover svg {
    transform: scale(1.15);
}

.network-item-full.icon-facebook { color: #1877f2; background: #f0f4fc; }
.network-item-full.icon-facebook:hover { background: #1877f2; color: #ffffff; }

.network-item-full.icon-instagram { color: #e1306c; background: #fdf2f5; }
.network-item-full.icon-instagram:hover { background: #e1306c; color: #ffffff; }

.network-item-full.icon-youtube { color: #ff0000; background: #fff5f5; }
.network-item-full.icon-youtube:hover { background: #ff0000; color: #ffffff; }

.network-item-full.icon-tiktok { color: #010101; background: #f7f7f7; }
.network-item-full.icon-tiktok:hover { background: #010101; color: #ffffff; }

.network-item-full.icon-snapchat { color: #fffc00; background: #fffff0; }
.network-item-full.icon-snapchat:hover { background: #e6c300; color: #ffffff; }

.network-item-full.icon-x-twitter { color: #14171a; background: #f5f8fa; }
.network-item-full.icon-x-twitter:hover { background: #14171a; color: #ffffff; }

@media (max-width: 600px) {

    .social-networks-grid-full {
        grid-template-columns: 1fr;
    }
}
