


:root {
  --header-height: 60px;
}

body {
  padding-top: var(--header-height);
  overflow-x: hidden; 
  width: 100%;
}

.container {
  padding: 0 20px;
  width: 100%;
}

h1 { font-size: 1.8rem !important; }
h2 { font-size: 1.5rem !important; }
h3 { font-size: 1.2rem !important; }


.header {
  height: var(--header-height);
  padding: 0;
  background: rgba(0,0,0,0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  padding: 0 15px;
  height: 100%;
  display: flex !important;
  justify-content: center; 
  align-items: center;
  flex-direction: row !important; 
  position: relative;
}


.logo {
  z-index: 1001; 
}

.logo a {
  gap: 8px !important;
  justify-content: center;
}

.logo a i {
  font-size: 20px !important; 
}
.logo a div div:first-child {
  font-size: 14px !important;
  white-space: nowrap; 
}
.logo a div div:last-child {
  font-size: 8px !important;
  white-space: nowrap; 
  display: none; 
}


.header-right {
  position: fixed;
  top: var(--header-height); 
  left: 0;
  width: 80%; 
  max-width: 300px;
  height: calc(100vh - var(--header-height));
  background: rgba(10, 10, 10, 0.98); 
  flex-direction: column;
  align-items: flex-start; 
  justify-content: flex-start;
  gap: 0;
  padding: 20px 0;
  box-shadow: 5px 0 15px rgba(0,0,0,0.3);
  
  
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex !important;
  visibility: visible;
  z-index: 999;
}




.header-right.active {
  transform: translateX(0);
}

.top-bar {
  order: 2; 
  gap: 20px;
  width: 100%;
  justify-content: flex-start;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto; 
}

.nav-bar {
  order: 1;
  width: 100%;
}

.nav-list {
  flex-direction: column;
  gap: 0;
  width: 100%;
  align-items: flex-start;
  margin: 0 !important;
}

.nav-list li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-list a {
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  padding: 15px 25px;
  width: 100%;
  color: rgba(255,255,255,0.8);
}
.nav-list a:hover, .nav-list a.active {
    background: transparent; 
    color: var(--primary-blue); 
    border-left: none; 
    font-weight: 700; 
}





.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  z-index: 1002;
  width: 44px;
  height: 44px;
  position: absolute; 
  
  position: fixed; 
  top: 8px; 
  left: 10px; 
  right: auto;
  transform: none;
}


.footer {
  padding-top: 40px;
  text-align: center;
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
  padding-bottom: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col h4::after {
  left: 50%;
  transform: translateX(-50%);
}

.footer-logo {
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.social-links.vertical {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.social-links.vertical a {
  width: 44px; 
  height: 44px;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.08); 
  border-radius: 50%;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex !important; 
}

.social-links.vertical a .social-icon-wrapper {
    background: transparent !important; 
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links.vertical a i {
  margin: 0;
  border: none;
  background: transparent;
  width: auto;
  height: auto;
  color: white; 
  font-size: 1.2rem;
}

.social-links.vertical a .social-details {
  display: none;
}

.social-links.vertical a .social-arrow {
  display: none;
}

.contact-item {
  display: flex;
  justify-content: center; 
  text-align: left;
  flex-direction: row; 
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
}

.contact-item i {
  font-size: 1.1rem;
  margin-right: 0;
  margin-bottom: 0; 
  color: var(--primary-blue);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 68, 215, 0.1);
  border-radius: 50%;
  flex-shrink: 0; 
}


.footer-address, .footer-phone, .footer-email, .contact-item div {
    text-align: left;
    margin: 0;
}

.footer-address, .footer-phone, .footer-email {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 25px;
}

.footer-links li {
  margin-bottom: 0;
  width: auto;
}

.footer-links a {
  padding: 5px 0;
  display: inline-block;
}

.footer-bottom-content {
  flex-direction: column;
  gap: 15px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-legal {
  justify-content: center;
}




.fixed-sidebar {
  display: none;
}


.chat-widget {
  bottom: 15px;
  right: 15px;
}
.chat-text {
  display: none;
}
.chat-icon {
  width: 45px;
  height: 45px;
  font-size: 20px;
}


.contact-modal {
  width: 95%;
  max-width: none;
  margin: 0;
  height: auto;
  min-height: auto;
  max-height: 90vh;
  border-radius: 8px;
}

.contact-modal-wrapper {
  flex-direction: column;
}

.contact-modal-form-side,
.contact-modal-info-side {
  padding: 25px 20px;
}

.modal-contact-form .form-row {
  flex-direction: column;
  gap: 15px;
}
.modal-contact-form .input-group {
 margin-bottom: 0;
}

.contact-modal-info-side {
  display: none; 
}
@media (min-height: 800px) {
    
    .contact-modal-info-side { display: flex; padding: 20px; }
    .contact-modal-info-side .info-header h3 { font-size: 2rem; }
}


.section-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 0.9rem;
  margin-bottom: 30px;
}
