/* Base Styles */
:root {
    --primary-color: #FF6B00;
    --primary-dark: #E05D00;
    --black: #121212;
    --dark-gray: #1E1E1E;
    --medium-gray: #333333;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --base-padding: 1.5rem;
    --section-padding: 5rem;
    --card-padding: 1.5rem;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--black);
    color: var(--light-gray);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--light-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    color: var(--primary-color);
}
a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: var(--base-padding);
    background-color: var(--dark-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 5px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-orange {
    background-color: var(--primary-color);
    color: var(--black);
    border-color: var(--primary-color);
}

.btn-orange:hover {
    background-color: var(--primary-dark);
    color: var(--light-gray);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.btn-outline-orange:hover {
    background-color: var(--primary-color);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--light-gray);
    border-color: var(--light-gray);
}

.btn-outline-white:hover {
    background-color: var(--dark-gray);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Header Styles */
/* Enhanced Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95); /* Semi-transparent black */
    backdrop-filter: blur(10px); /* Glass effect */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    padding: 0;
    transition: var(--transition);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem var(--base-padding);
    margin: 0 auto;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* Logo Enhancement */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-style: italic;
    opacity: 0.9;
    display: block;
    line-height: 1.3;
}

.logo-img {
    width: 2.5rem;
    height: auto;
    transition: var(--transition);
}
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px; /* تم تقليل الفجوة بين العناصر */
}

.logo-top {
  display: flex;
  align-items: flex-end;
  gap: 4px; /* تقليل الفجوة بين الصورة والكلمة */
}

.logo-q-img {
  height: 28px; /* أصغر من السابق */
  width: auto;
  margin-right: 3px;
}

.logo-tech {
  color: #ff6b00;
  font-weight: bold;
  font-size: 8px; /* تم تصغير الخط */
  letter-spacing: 0.6px;
  padding-bottom: 1px;
}

.logo-name {
  font-size: 18px; /* تصغير أكبر */
  font-weight: 700;
  color: white;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
}

.roof {
  color: #ff6b00;
  font-size: 10px; /* تصغير رمز السقف */
  margin-right: 2px;
  margin-top: -6px;
}

.logo-sub {
  font-size: 8px; /* تصغير السطر السفلي */
  color: #ff6b00;
  font-weight: 600;
  letter-spacing: 0.3px;
}






/* Navigation Enhancement */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    color: var(--light-gray);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
    opacity: 1;
}

.main-nav a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.main-nav a.active {
    color: var(--primary-color);
}

/* Add subtle animation on scroll */
.main-header.scrolled {
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.main-header.scrolled .logo-img {
    width: 2.2rem;
}

.main-header.scrolled .logo h1 {
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .main-nav ul {
        gap: 1rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.02);
    z-index: 1;
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide.prev {
    transform: translateX(-10%);
    opacity: 0;
}

.slide.next {
    transform: translateX(10%);
    opacity: 0;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    max-width: 600px;
    color: var(--light-gray);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    z-index: 3;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
}

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

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--light-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 10px;
}

.slider-nav button:hover {
    background: var(--primary-color);
}

.slide.exit-active {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 800ms, transform 800ms;
}

.dots {
    display: flex;
    margin: 0 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.4);
}

/* Quick Intro */
.quick-intro {
    padding: var(--section-padding) 0;
    background-color: var(--medium-gray);
    color: var(--light-gray);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 40px;
}

.quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    padding: 20px;
    background-color: var(--dark-gray);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.quick-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quick-link i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quick-link span {
    font-weight: 600;
}

/* Services Preview */
.services-preview {
    padding: var(--section-padding) 0;
    background-color: var(--medium-gray);
    color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--medium-gray);
    color: var(--light-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-align: center;
    padding: var(--card-padding);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 15px;
}

/* Projects Highlight */
.projects-highlight {
    padding: var(--section-padding) 0;
    background-color: var(--dark-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background-color: var(--medium-gray);
    color: var(--light-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    padding: var(--card-padding);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.client-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    max-width: 80px;
    max-height: 40px;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5));
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 14px;
    margin-bottom: 8px;
}

.project-info strong {
    color: var(--primary-color);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background-color: var(--black);
    color: var(--light-gray);
    text-align: center;
}

.stats-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
}

/* Call to Action */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-gray);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--light-gray);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
/* Enhanced Footer Styles */
/* ==================== FOOTER STYLES ==================== */
:root {
  --footer-bg-color: #1a1a1a;
  --footer-bottom-bg: #0d0d0d;
  --primary-color: #ff6b00;
  --primary-hover: #ff8c3a;
  --text-color: #f5f5f5;
  --secondary-text: #b3b3b3;
  --max-width: 1300px;
  --section-padding: 30px 0;
  --column-padding: 20px;
  --transition-speed: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --footer-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 6px;
  --social-icon-size: 18px;
}

/* ==================== MAIN FOOTER STRUCTURE - HORIZONTAL ==================== */
footer.main-footer {
  background-color: var(--footer-bg-color);
  color: var(--text-color);
  padding: var(--section-padding);
  position: relative;
  overflow-x: auto;
  box-shadow: var(--footer-shadow);
  z-index: 100;
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Full width footer technique */
footer.main-footer,
.footer-bottom {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Inner container styling */
footer .container,
.footer-bottom .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
}

/* Horizontal layout for footer columns */
.footer-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 30px;
  padding: 20px 0;
}

.footer-column {
  min-width: 280px;
  padding: var(--column-padding);
  box-sizing: border-box;
  position: relative;
  transition: transform 0.4s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-column:last-child {
  border-right: none;
}

.footer-column:hover {
  transform: translateY(-5px);
}

/* Footer logo section */
.footer-logo {
  margin-bottom: 20px;
  transition: transform var(--transition-speed);
}

.footer-logo:hover {
  transform: translateY(-5px);
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-color);
  letter-spacing: 0.8px;
  position: relative;
  display: inline-block;
}

.footer-logo h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 3px;
  background: var(--primary-color);
  transition: width var(--transition-speed);
}

.footer-logo:hover h3::after {
  width: 100%;
}

.footer-logo .tagline {
  color: var(--primary-color);
  font-style: italic;
  margin-bottom: 15px;
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

/* Column headings */
.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-color);
  position: relative;
  padding-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column h4::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: width var(--transition-speed);
}

.footer-column h4:hover::before {
  width: 60px;
}

/* Footer links list */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-column ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0.8);
  transition: transform var(--transition-speed);
}

.footer-column ul li:hover::before {
  transform: scale(1.2);
}

.footer-column ul li a {
  color: var(--secondary-text);
  text-decoration: none;
  transition: all var(--transition-speed);
  display: inline-block;
  font-size: 0.9rem;
  width: calc(100% - 18px);
  letter-spacing: 0.3px;
  font-weight: 400;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Contact info styling */
.contact-info {
  font-style: normal;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 18px;
  text-align: center;
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
}

.contact-info p {
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 0.9rem;
  display: inline-block;
  width: calc(100% - 28px);
  vertical-align: middle;
  color: var(--secondary-text);
  transition: color var(--transition-speed);
}

.contact-info p:hover {
  color: var(--text-color);
}

/* Social links styling */
.social-links {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.08);
  width: 38px;
  height: 38px;
  border-radius: var(--border-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--social-icon-size);
  transition: all var(--transition-speed);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.social-links a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  opacity: 0;
  transition: opacity var(--transition-speed);
  z-index: 0;
}

.social-links a i {
  position: relative;
  z-index: 1;
  transition: transform var(--transition-speed);
}

.social-links a:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 107, 0, 0.3);
}

.social-links a:hover::after {
  opacity: 1;
}

.social-links a:hover i {
  transform: scale(1.1);
}

/* Newsletter form styling */
.newsletter-form {
  margin-top: 20px;
  position: relative;
}

.newsletter-form input[type="email"] {
  padding: 10px 15px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-speed);
  color: var(--text-color);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--secondary-text);
  opacity: 0.8;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.newsletter-form button {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all var(--transition-speed);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.newsletter-form button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.newsletter-form button:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
  transform: translateY(-2px);
}

.newsletter-form button:hover::after {
  left: 100%;
}

/* ==================== FOOTER BOTTOM ==================== */
.footer-bottom {
  background-color: var(--footer-bottom-bg);
  padding: 20px 0;
  color: var(--secondary-text);
  font-size: 0.85rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-bottom .copyright {
  margin: 5px 0;
}

.footer-bottom .footer-links {
  display: flex;
  gap: 15px;
}

.footer-bottom .footer-links a {
  color: var(--secondary-text);
  text-decoration: none;
  transition: all var(--transition-speed);
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.footer-bottom .footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width var(--transition-speed);
}

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

.footer-bottom .footer-links a:hover::before {
  width: 100%;
}

/* Divider between links */
.footer-bottom .footer-links a:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -10px;
  color: rgba(255, 255, 255, 0.1);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
  .footer-columns {
    gap: 20px;
  }
  
  .footer-column {
    min-width: 240px;
  }
}

@media (max-width: 768px) {
  footer.main-footer {
    padding: 25px 0;
  }

  /* نحافظ على الفلكس بشكل أفقي */
  .footer-columns {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .footer-column {
    min-width: 240px;
    border-right: none;
    padding-bottom: 30px;
  }

  .footer-column:last-child {
    padding-bottom: 0;
  }

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

  .footer-bottom .footer-links {
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
  }
}



/* Responsive Styles */
@media (max-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-slider {
        height: 95vh;
    }
}

@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    /* Mobile Menu Fixes */
    .main-header .container {
        position: relative;
        padding: 15px 20px;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
        position: relative;
        top: auto;
        right: auto;
        z-index: 1001;
        margin-left: auto;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        transition: var(--transition);
    }
    
    .mobile-menu-btn:hover {
        background: rgba(255, 107, 0, 0.2);
    }
    
    .main-nav ul {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--black);
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        margin: 0;
    }
    
    .main-nav ul.menu-open {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav li {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        color: var(--light-gray);
        transition: var(--transition);
    }
    
    .main-nav a:hover {
        background-color: rgba(255, 107, 0, 0.1);
        color: var(--primary-color);
    }
    
    .main-nav a::after {
        display: none;
    }
    
    /* About Grid */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: -10px;
        right: auto;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .partner-card {
        grid-template-columns: 1fr;
    }
    
    .partner-logo {
        padding: 20px;
    }
    
    .partner-info {
        padding: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer adjustments */
    .main-footer .container {
        padding: 30px 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        padding: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --base-padding: 1rem;
        --section-padding: 3rem;
        --card-padding: 1.25rem;
    }
    
    .hero-slider {
        height: 70vh;
        margin-top: 60px;
    }
    
    .slide-content {
        bottom: 15%;
        left: 5%;
        max-width: 90%;
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slider-nav {
        bottom: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-section .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .profile-social {
        justify-content: center;
    }
    
    /* Grid adjustments */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 70vh;
        margin-top: 70px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .slide-content {
        bottom: 10%;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .stats-section .container {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .page-banner h1 {
        font-size: 36px;
    }
    
    .page-banner p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .projects-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 400px) {
    :root {
        --base-padding: 0.8rem;
        --section-padding: 2rem;
        --card-padding: 1rem;
    }
    
    .container {
        padding: 15px;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .slide-content h2 {
        font-size: 20px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .main-header .container {
        padding: 10px 15px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .mobile-menu-btn {
        font-size: 22px;
    }
}

/* Form elements */
input, textarea, select {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    border: 1px solid var(--medium-gray);
    padding: 12px 15px;
    margin-bottom: 15px;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.3);
}

@media (max-width: 576px) {
    input, textarea, select {
        padding: 10px 12px;
    }
}

/* About Page Styles */
:root {
    --transition: all 0.3s ease-in-out;
}

.page-banner {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--light-gray);
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--light-gray);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-padding {
    padding: var(--section-padding) 0;
    position: relative;
}

.bg-light {
    background-color: var(--dark-gray);
}

.bg-dark {
    background-color: var(--dark-gray);
}

.text-white {
    color: var(--light-gray);
}

.text-light {
    color: rgba(255, 255, 255, 0.9);
}

.section-header {
    text-align: center;
    margin-bottom: 3.125rem;
    position: relative;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 0.9375rem;
    position: relative;
    font-weight: 700;
    color: var(--light-gray);
}

.section-title::after {
    content: '';
    display: block;
    width: 5rem;
    height: 0.25rem;
    background-color: var(--primary-color);
    margin: 0.9375rem auto 0;
    border-radius: 0.25rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--light-gray);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-content p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.about-list {
    margin: 1.25rem 0;
    list-style-type: none;
    padding: 0;
}

.about-list li {
    position: relative;
    padding-left: 1.5625rem;
    margin-bottom: 0.625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.625rem;
    height: 0.625rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.about-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.9375rem 2.5rem rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem;
}

.vm-card {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vm-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 107, 0, 0.2);
}

.vm-icon {
    width: 5rem;
    height: 5rem;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.vm-card:hover .vm-icon {
    background-color: rgba(255, 107, 0, 0.2);
    transform: scale(1.05);
}

.vm-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.9375rem;
    font-weight: 600;
}

.vm-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.875rem;
}

.strength-card {
    background-color: var(--dark-gray);
    padding: 1.875rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border-top: 0.25rem solid var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.strength-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.25);
    background-color: rgba(0, 0, 0, 0.2);
}

.strength-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.9375rem;
}

.strength-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
    font-weight: 600;
}

.strength-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: 80px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -50px;
}

.timeline-content {
    width: calc(50% - 80px);
    background-color: var(--dark-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* تحسينات للشاشات الكبيرة (أكثر من 1600px) */
@media (min-width: 1600px) {
    .timeline {
        max-width: 1400px;
    }
    
    .timeline-item:nth-child(odd) {
        padding-right: 100px;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 100px;
    }
    
    .timeline-content {
        width: calc(50% - 100px);
    }
}

/* تحسينات للشاشات المتوسطة (أقل من 1200px) */
@media (max-width: 1200px) {
    .timeline {
        max-width: 900px;
    }
    
    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-year {
        right: -40px;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        left: -40px;
    }
    
    .timeline-content {
        width: calc(50% - 60px);
        padding: 25px;
    }
}

/* تحسينات للشاشات الصغيرة (أقل من 992px) */
@media (max-width: 992px) {
    .timeline {
        max-width: 700px;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
    .timeline-year {
        width: 70px;
        height: 70px;
        font-size: 18px;
    }
    
    .timeline-content {
        padding: 20px;
    }
}

/* تحسينات للشاشات الأصغر (أقل من 768px) */
@media (max-width: 768px) {
    .timeline::before {
        left: 50px;
        transform: none;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 100px !important;
        padding-right: 0 !important;
        margin-bottom: 30px;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        left: 10px !important;
        right: auto !important;
        font-size: 16px;
    }
    
    .timeline-content {
        width: 100%;
    }
}

/* تحسينات للشاشات الصغيرة جداً (أقل من 576px) */
@media (max-width: 576px) {
    .timeline {
        padding: 0 15px;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        padding-left: 80px !important;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .timeline-content p {
        font-size: 14px;
    }
}

/* تحسينات للشاشات الموبايل (أقل من 400px) */
@media (max-width: 400px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 60px !important;
    }
    
    .timeline-year {
        width: 40px;
        height: 40px;
        left: 5px !important;
        font-size: 12px;
    }
    
    .timeline-content {
        padding: 12px;
    }
}

.team-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.875rem;
}

.team-member {
    background-color: var(--medium-gray);
    color: var(--light-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 0, 0.3);
}

.member-image {
    height: 15.625rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.team-member:hover .member-image {
    opacity: 0.9;
}

.team-member h3 {
    font-size: 1.25rem;
    margin: 1.25rem 0 0.3125rem;
    font-weight: 600;
}

.team-member p {
    color: var(--medium-gray);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.mt-40 {
    margin-top: 2.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-grid,
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 1.875rem;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 5rem !important;
        padding-right: 0 !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: -3.125rem;
        right: auto;
    }
    
    .timeline-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 2.25rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Services Page Styles */
.service-category-header {
    text-align: center;
    margin-bottom: 3.125rem;
    position: relative;
}

.service-category-icon {
    width: 6.25rem;
    height: 6.25rem;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.service-category-icon:hover {
    transform: scale(1.05);
    background-color: rgba(255, 107, 0, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(255, 107, 0, 0.1);
}

.service-category-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-category-title {
    font-size: 2rem;
    margin-bottom: 0.625rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--light-gray);
    position: relative;
    display: inline-block;
}

.service-category-title::after {
    content: '';
    display: block;
    width: 3.125rem;
    height: 0.1875rem;
    background: var(--primary-color);
    margin: 0.9375rem auto 0;
    border-radius: 0.1875rem;
}

.service-category-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.875rem;
}

.service-detail-card {
    background-color: var(--dark-gray);
    padding: 1.875rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border-top: 0.25rem solid var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.03) 0%, transparent 100%);
    z-index: 0;
    opacity: 0;
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 0, 0.3);
}

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

.service-detail-icon {
    width: 3.75rem;
    height: 3.75rem;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1);
    background-color: rgba(255, 107, 0, 0.2);
}

.service-detail-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-detail-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: var(--light-gray);
}

.service-features {
    list-style-type: none;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.service-features li {
    position: relative;
    padding-left: 1.5625rem;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-features li:hover::before {
    transform: scale(1.2);
}

.solutions-accordion {
    max-width: 50rem;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 0.9375rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.2);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem;
    background-color: var(--dark-gray);
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.accordion-header h3 {
    font-size: 1.125rem;
    margin: 0;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--light-gray);
}

.accordion-header i:first-child {
    margin-right: 0.9375rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    width: 1.875rem;
    text-align: center;
    transition: var(--transition);
}

.accordion-header i:last-child {
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.accordion-header.active {
    background-color: rgba(255, 107, 0, 0.05);
}

.accordion-header.active i:last-child {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.accordion-content {
    background-color: var(--dark-gray);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content-inner {
    padding: 0 1.25rem 1.25rem;
}

.accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.accordion-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.3125rem;
    color: var(--primary-color);
    font-weight: 600;
}

.accordion-feature p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: 1.875rem;
    max-width: 62.5rem;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 3.75rem;
    left: 0;
    right: 0;
    height: 0.125rem;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.process-step {
    text-align: center;
    color: var(--light-gray);
    position: relative;
    z-index: 1;
}

.step-number {
    width: 3.75rem;
    height: 3.75rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
    border: 0.125rem solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.3);
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    font-weight: 600;
}

.process-step p {
    font-size: 0.875rem;
    opacity: 0.85;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Projects Page Styles */
.projects-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 1.875rem;
    position: relative;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    background-color: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(255, 107, 0, 0.7) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.filter-btn:hover {
    background-color: transparent;
    color: var(--light-gray);
    border-color: transparent;
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.25rem 0.5rem rgba(255, 107, 0, 0.2);
}

.filter-btn:hover::before {
    opacity: 1;
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--light-gray);
    border-color: var(--primary-color);
    box-shadow: 0 0.25rem 0.75rem rgba(255, 107, 0, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(21.875rem, 1fr));
    gap: 1.875rem;
}

.project-item {
    background-color: var(--dark-gray);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.project-item:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 0, 0.3);
}

.project-image {
    height: 12.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: var(--transition);
}

.project-item:hover .project-image {
    opacity: 0.9;
}

.project-status {
    position: absolute;
    top: 0.9375rem;
    right: 0.9375rem;
    padding: 0.3125rem 0.625rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.project-status.ongoing {
    background-color: #FFC107;
    color: var(--black);
}

.project-status.completed {
    background-color: #28A745;
    color: var(--light-gray);
}

.project-info {
    padding: 1.25rem;
}

.project-client {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9375rem;
    padding-bottom: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-client img {
    max-height: 1.875rem;
    max-width: 6.25rem;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.project-item:hover .project-client img {
    opacity: 1;
    filter: brightness(1) invert(0);
}

.project-client span {
    font-size: 0.875rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--light-gray);
}

.project-meta {
    display: flex;
    gap: 0.9375rem;
    margin-bottom: 0.9375rem;
    font-size: 0.875rem;
    color: var(--medium-gray);
    flex-wrap: wrap;
}

.project-meta i {
    margin-right: 0.3125rem;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.project-highlights {
    list-style-type: none;
    margin-bottom: 1.25rem;
}

.project-highlights li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.project-highlights li::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.75rem;
    top: 0.25rem;
    transition: var(--transition);
}

.project-highlights li:hover::before {
    transform: translateX(0.1875rem);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9.375rem, 1fr));
    gap: 1.875rem;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background-color: var(--dark-gray);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    height: 6.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.client-logo:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 107, 0, 0.3);
}

.client-logo img {
    max-width: 100%;
    max-height: 3.75rem;
    width: auto;
    height: auto;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Team Page Styles */
/* Enhanced Team Section */
.team-intro {
    max-width: 50rem;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
    padding: 0 1.25rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.team-intro h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.25rem;
    background: var(--primary-color);
    border-radius: 0.25rem;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.9);
    max-width: 90%;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 56.25rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.team-profile {
    background-color: var(--dark-gray);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 107, 0, 0.1);
    position: relative;
}

.team-profile:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.9375rem 2.1875rem rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 0, 0.3);
}

.profile-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 65%, rgba(255, 107, 0, 0.08) 100%);
    transition: all 0.4s ease;
}

.team-profile:hover .profile-header::before {
    background: linear-gradient(45deg, transparent 65%, rgba(255, 107, 0, 0.15) 100%);
}

.profile-image {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 2rem;
    border: 0.25rem solid var(--primary-color);
    box-shadow: 0 0.5rem 1.5625rem rgba(255, 107, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-profile:hover .profile-image {
    transform: scale(1.05);
    box-shadow: 0 0.75rem 2rem rgba(255, 107, 0, 0.3);
}

.profile-title h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.profile-title p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    letter-spacing: 0.05rem;
}

.profile-social {
    display: flex;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.profile-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background-color: rgba(30, 30, 30, 0.7);
    color: var(--light-gray);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(245, 245, 245, 0.1);
}

.profile-social a:hover {
    background-color: var(--primary-color);
    color: var(--black);
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(255, 107, 0, 0.3);
    border-color: transparent;
}

.profile-content {
    padding: 2rem;
}

.profile-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.profile-content h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.3125rem;
    width: 3.125rem;
    height: 0.125rem;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.profile-content h4:hover::after {
    width: 100%;
}

.profile-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.9);
}

.profile-experience {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.profile-experience li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: rgba(245, 245, 245, 0.9);
    line-height: 1.6;
}

.profile-experience li::before {
    content: '\f0da';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.profile-experience li:hover::before {
    transform: translateX(0.3125rem);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.expertise-tags span {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 1.875rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.expertise-tags span:hover {
    background-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.625rem rgba(255, 107, 0, 0.1);
}

.field-teams {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.875rem;
    padding: 0 1.25rem;
    max-width: 75rem;
    margin: 0 auto;
}

.field-team {
    background-color: var(--dark-gray);
    padding: 1.875rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.field-team:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 0, 0.3);
}

.field-team h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.625rem;
}

.field-team h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.5rem;
    height: 0.125rem;
    background: var(--primary-color);
}

.team-stats {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.team-stats .stat {
    text-align: center;
    flex: 1;
    min-width: 6.25rem;
}

.team-stats .stat span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    transition: all 0.3s ease;
}

.field-team:hover .team-stats .stat span {
    transform: scale(1.1);
}

.team-stats .stat p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: 0.3125rem;
    transition: all 0.3s ease;
}

.field-team:hover .team-stats .stat p {
    color: rgba(245, 245, 245, 0.8);
}

@media (max-width: 48rem) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .profile-image {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .profile-social {
        justify-content: center;
    }
    
    .profile-content {
        padding: 1.5rem;
    }
}

/* Partners Page Styles */
/* ===== Partners Section - Professional Styling ===== */
.partners-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background-color: var(--medium-gray);
    color: var(--light-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--dark-gray);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    filter: grayscale(100%) contrast(80%);
    opacity: 0.9;
    transition: filter 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%) contrast(100%);
    opacity: 1;
}

.partner-info {
    padding: 2rem 2rem 2rem 0;
}

.partner-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--light-gray);
    font-weight: 600;
}

.partner-info p {
    color: var(--medium-light-gray);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.partner-projects h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-weight: 600;
}

.partner-projects ul {
    list-style-type: none;
    padding-left: 0;
}

.partner-projects li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.partner-projects li::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.75rem;
    top: 0.25rem;
}

/* ===== Testimonials Slider - Professional Styling ===== */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.testimonial {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    font-style: italic;
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.7;
    color: var(--light-gray);
}

.testimonial-content p::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    opacity: 0.2;
    font-size: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info p {
    color: var(--medium-light-gray);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.author-rating {
    color: var(--primary-color);
    letter-spacing: 0.125rem;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.testimonial-prev,
.testimonial-next {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--light-gray);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-color);
    color: var(--light-gray);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

.testimonial-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.partnership-cta {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
}

/* Contact Page Styles */
/* ===== Contact Section - Professional Enhancement ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.125rem;
    align-items: start;
}

.contact-form {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--light-gray);
    font-weight: 600;
    line-height: 1.3;
}

.contact-form p {
    margin-bottom: 1.875rem;
    color: var(--medium-light-gray);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--medium-gray);
    color: var(--light-gray);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-light-gray);
    opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.1875rem rgba(255, 107, 0, 0.25);
    background-color: var(--medium-dark-gray);
}

.form-group textarea {
    resize: vertical;
    min-height: 7.5rem;
}

/* ===== Contact Info Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-form {
    background-color: var(--dark-gray);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-form:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--light-gray);
    font-weight: 600;
    line-height: 1.3;
}

.contact-form p {
    margin-bottom: 1.5rem;
    color: var(--medium-light-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--medium-gray);
    color: var(--light-gray);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 0.9rem;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-light-gray);
    opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.15rem rgba(255, 107, 0, 0.25);
    background-color: var(--medium-dark-gray);
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

/* ===== Contact Info Section ===== */
.contact-info {
    background-color: var(--dark-gray);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--light-gray);
    font-weight: 600;
    line-height: 1.3;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--medium-light-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

.info-card {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
    background-color: rgba(255, 107, 0, 0.2);
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.info-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
    font-weight: 600;
}

.info-content p {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    color: var(--medium-light-gray);
    line-height: 1.6;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--light-gray);
}

.btn-link i {
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(0.3rem);
}

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--light-gray);
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    width: 2.2rem;
    height: 2.2rem;
    background-color: var(--medium-gray);
    color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 0.9rem;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-0.15rem);
    box-shadow: 0 0.2rem 0.6rem rgba(255, 107, 0, 0.3);
}

/* ===== Map Section ===== */
.map-section {
    padding: 3rem 0 0;
    text-align: center;
}

.map-section h2 {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.map-section h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 0.15rem;
    background: var(--primary-color);
    bottom: -0.5rem;
    left: 25%;
    border-radius: 0.15rem;
}

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
}

.map-container:hover {
    transform: scale(1.01);
}

/* ===== Departments Section ===== */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.department-card {
    background-color: var(--medium-gray);
    color: var(--light-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.department-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.3);
}

.department-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.department-card:hover .department-icon {
    background-color: rgba(255, 107, 0, 0.2);
    transform: rotate(15deg) scale(1.1);
}

.department-icon i {
    font-size: 1.7rem;
    color: var(--primary-color);
}

.department-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
    font-weight: 600;
}

.department-card p {
    font-size: 0.85rem;
    color: var(--medium-light-gray);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* ===== Footer Section ===== */
footer .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

footer .footer-column {
    flex: 1 1 12rem;
    max-width: 18rem;
    min-width: 12rem;
    box-sizing: border-box;
}

.lazyload,
.lazyloading {
    opacity: 0;
}

.lazyloaded {
    opacity: 1;
    transition: opacity 300ms;
}

.project-image {
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
}

/* ===== Media Queries ===== */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .contact-form h2,
    .contact-info h2 {
        font-size: 1.6rem;
    }
    
    .info-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .info-icon i {
        font-size: 1.4rem;
    }
}

@media (min-width: 992px) {
    .contact-grid {
        gap: 2.5rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2.5rem;
    }
    
    .contact-form h2,
    .contact-info h2 {
        font-size: 1.75rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
    }
    
    .info-icon {
        width: 3.75rem;
        height: 3.75rem;
    }
    
    .info-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    footer .footer-inner {
        justify-content: center;
    }

    footer .footer-column {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-columns {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-column {
        flex: 1 1 12rem;
        border-right: none;
        border-bottom: none;
        padding: 1rem;
        text-align: center;
    }
}
