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

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ================= HEADER ================= */

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80px;
}

.header-inner {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
}

.logo {
  z-index: 1002;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

.navbar {
  width: fit-content;
  max-width: 900px;
  padding: 10px 38px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.13);
}

.navbar a {
  text-decoration: none;
  color: #212121;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 25px;
  transition: all 0.3s;
  white-space: nowrap;
}

.navbar a:hover {
  background: #E5E7EB;
}

.lang-btn {
  padding: 10px 22px;
  background: transparent;
  color: #4B5563;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.lang-btn:hover {
  background: #E5E7EB;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  z-index: 1002;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.13);
}

.hamburger-menu i {
  font-size: 24px;
  color: #212121;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: -10px;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 100px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
  text-decoration: none;
  color: #212121;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s;
}

.mobile-menu a:hover {
  background: #E5E7EB;
}

.mobile-menu .lang-btn {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar {
    gap: 6px;
    padding: 10px 25px;
  }
  
  .navbar a {
    padding: 8px 14px;
    font-size: 14px;
  }
  
  .lang-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header {
    top: 10px;
    height: 70px;
  }
  
  .header-inner {
    width: 95%;
    justify-content: space-between;
  }
  
  .logo img {
    height: 70px;
  }
  
  .navbar {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }
}

/* ================= END HEADER ================= */



/* ================= TRY SECTION ================= */
.white-section {
  background: linear-gradient(135deg, #ffffff 100%);
  padding: 50px 7%;
  margin: 0;
}


/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 60px 6% 70px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 70px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.office-card {
  background: linear-gradient(180deg, #EDE9FE 0%, #DDD6FE 100%);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  border-left: 4px solid #8B5CF6;
}

.office-label {
  font-size: 13px;
  color: #7C3AED;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.office-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.office-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 0;
}

.office-divider {
  height: 1px;
  background: rgba(0,0,0,.1);
  margin: 22px 0;
}

.contact-info-label {
  font-weight: 600;
  color: #111827;
}

.contact-content h1 {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.1;
}

.contact-content > p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
  font-style: italic;
  max-width: 650px;
  margin-bottom: 35px;
}

/* ================= MAP ================= */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f600;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= CONSULTATION FORM ================= */
.consultation-section {
  background: linear-gradient(to top, #7C3AED 0%, #4F46E5 100%);
  padding: 80px 6% 90px;
  color: white;
  text-align: center;
}

.consultation-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.consultation-section .subtitle {
  font-size: 15px;
  opacity: .95;
  margin-bottom: 6px;
}

.consultation-section .description {
  font-size: 14px;
  font-style: italic;
  opacity: .9;
  margin-bottom: 45px;
}

.form-container {
  max-width: 880px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 15px 18px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: white;
  color: #111827;
  outline: none;
  transition: box-shadow .2s;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #9CA3AF;
  font-style: italic;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,.3);
}

.form-grid select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234F46E5' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
  color: #9CA3AF;
  font-style: italic;
}

.form-grid textarea {
  resize: none;
  height: 130px;
  font-family: 'Inter', sans-serif;
}

.submit-btn {
  margin-top: 30px;
  padding: 14px 50px;
  border: none;
  border-radius: 999px;
  background: white;
  color: #111827;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #4691ed 0%, #3a7ced 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

@media (max-width: 1200px) {
  .contact-section {
    grid-template-columns: 280px 1fr;
    gap: 50px;
  }
  
}

@media (max-width: 1024px) {
  
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 5%;
  }
  
  .office-card {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .contact-content h1 {
    font-size: 32px;
  }
  
  .consultation-section h2 {
    font-size: 28px;
  }
  
  .form-row,
  .form-row-three {
    grid-template-columns: 1fr;
  }
  
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 5%;
  }
  
  .consultation-section {
    padding: 60px 5% 70px;
  }
}
/* ================= END TRY SECTION ================= */



/* ================= FOOTER ================= */
footer {
  padding: 80px 7% 30px;
  background: #4532C8;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-text h3 {
  font-size: 21.2px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.footer-brand-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.8;
}

.footer-brand > p {
  font-size: 14.2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  margin-top: 8px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: #6366F1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-section h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

.footer-section p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #6366F1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .square-section {
    padding: 60px 5%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 768px) {

  .dci-logo img {
    height: 90px;
  }
 
  .square-section p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .square-section {
    padding: 40px 15px;
  }
  
  .dci-logo img {
    height: 80px;
  }
  
  footer {
    padding: 50px 20px 30px;
  }
  
  .social-icon {
    width: 38px;
    height: 38px;
  }
}

