/* Reset & base styles */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif; 
  background: #fff; 
  color: #111; 
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Full-width sections */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

/* Prevent iOS from detecting phone numbers as links */
.contact-value {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
}

.contact-value:hover {
    text-decoration: none;
    color: #fff;
}

/* Prevent iOS from detecting phone numbers as links in specific elements */
.contact-info-box .contact-value {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    color: inherit;
    text-decoration: none;
}
body { font-family: 'Segoe UI', Arial, sans-serif; background: #fff; color: #111; }
.container { max-width: 1000px; margin: 0 auto; padding: 3rem 1.5rem; }
.section { min-height: 100vh; display: flex; align-items: center; position: relative; }

.home-section {
  position: relative;
  overflow: hidden;
}

.home-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/hero-img.jpg') no-repeat center center/cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  color: #fff;
  z-index: 1000;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 64px;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: #111;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.logo { 
  font-weight: bold; 
  font-size: 1.3rem; 
  letter-spacing: 1px; 
  color: #fff; 
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo i {
  font-size: 24px;
  color: white;
  margin-right: 10px;
}
.logo .icon-container {
  width: 50px; 
  height: 50px; 
  background: black; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-right: 10px;
}
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #ff7300; }

/* Hero Section */
.home-section { position: relative; background: url(img/hero-img.jpg) center/cover no-repeat; height: 100vh; color: #fff; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.55); z-index: 1; }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; }
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.hero-logo {
  width: 150px;
  height: auto;
  margin-bottom: 1.5rem;
}
.hero-title {
  margin: 0 auto;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 2px;
  display: block;
}
.hero-slogan {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}
.hero-btn {
  margin: 1.4rem auto 0 auto;
  display: block;
  background: #ff7300;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 600;
  padding: 0.7em 1.7em;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-btn i {
  font-size: 24px;
  color: white;
  margin-right: 10px;
}
.hero-btn .icon-container {
  width: 50px; 
  height: 50px; 
  background: black; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-right: 10px;
}
.hero-btn:hover {
  background: #ff8c1a;
}
@media (max-width: 600px) {
  .hero-btn {
    font-size: 0.95rem;
    padding: 1.1em 1.5em;
    margin-top: 1rem;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-services {
    font-size: 2.6rem;
  }
  .hero-slogan {
    font-size: 1.12rem;
    margin-top: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.hero-jth {
  color: #fff;
  font-weight: 800;
  letter-spacing: 2px;
}
.hero-services {
  color: #ff7300;
  font-weight: 800;
}
@media (max-width: 600px) {
  .hero-jth, .hero-services {
    font-size: 1.7rem;
  }
}
@media (max-width: 600px) {
  .hero-jth {
    font-size: 2.5rem;
  }
  .hero-services {
    font-size: 1.5rem;
  }
}

/* About Section */
.about-section { background: #fff; color: #111; margin-bottom: 3rem; }
.about-underline {
  width: 100px;
  height: 5px;
  background: #ff7300;
  border-radius: 3px;
  margin: 0 auto 2rem auto;
  margin-top: 0.5rem;
}
.about-section .container { max-width: 900px; margin: 0 auto; }
.about-section p { text-align: justify; }
.about-section h2 { color: #000000; margin-bottom: 1.2rem; font-size: 2.2rem; text-align: center; }
.about-section p { font-size: 1.12rem; line-height: 1.7; margin-bottom: 0.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }

/* Services Section */
.service-box-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.service-box {
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  min-height: 200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1.5rem;
}

.service-box h3 {
  margin-top: 12px;
  color: #000;
  text-align: center;
  margin-bottom: 1.2rem;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.service-box p {
  color: #000;
  text-align: center;
}
@media (max-width: 768px) {
  .service-box-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  .service-box {
    min-height: 200px;
  }
}

.services-underline {
  width: 100px;
  height: 5px;
  background: #ff7300;
  border-radius: 3px;
  margin: 0 auto 2rem auto;
  margin-top: 0.5rem;
}

.services-section { background: #111; color: #fff; }
.services-section .container { margin-bottom: 3rem; }
.services-section h2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
  text-align: center;
}

/* Contact Section */
.contact-section { background: #fff; color: #111; min-height: 100vh;}
.contact-section .container { margin-top: 2rem; margin-bottom: 3rem; }
.contact-section h2 { 
  color: #000000; 
  margin-top: 0rem;
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
  text-align: center;

}

.contact-underline {
  width: 100px;
  height: 5px;
  background: #ff7300;
  border-radius: 3px;
  margin: 0 auto 2rem auto;
  margin-top: 0.5rem;
}

.contact-description {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
  padding: 0 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
  }
  
  .contact-info-box {
    height: auto;
    padding: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
  }
  
  .contact-info-box h3 {
    font-size: 1.3rem;
  }
  
  .contact-label {
    font-size: 0.85rem;
  }
  
  .contact-value {
    font-size: 0.9rem;
  }
  
  .contact-value[href^="mailto:"] {
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .contact-value {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
  }
}

.contact-info-box,
.contact-form {
  background: #000;
  border-radius: 10px;
  padding: 1.5rem;
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
  width: 95%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form {
  background: #fff;
  color: #000;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-box h3 {
  color: #ff7300;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  text-align: center;
}

.contact-icon-container {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
  flex: 1;
}

.contact-label {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: #fff;
}

.contact-icon {
  width: 35px;
  height: 35px;
  background: #ff7300;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.4rem;
}

.contact-label {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  text-align: left;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: #fff;
  word-break: break-all;
}

.contact-form {
  background: #fff;
  border-radius: 10px;
  padding: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

/* Placeholder styles */
::placeholder {
  color: #666;
  font-size: 1rem;
  opacity: 0.7;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 0.75rem;
  background: #ff7300;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: #e66700;
}

.submit-button i {
  font-size: 1.2rem;
}

.contact-info { list-style: none; font-size: 1.1rem; }
.contact-info li { margin-bottom: 1.1rem; }
.contact-info a { color: #ff7300; text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }


/* Footer */
.footer { background: #111; color: #fff; text-align: center; padding: 1.3rem 0; font-size: 1rem; }

.footer-specialist {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .about-section h2 {
    font-size: 1.7rem;
  }
  .about-underline {
    width: 90px;
    height: 4px;
  }
  .about-section p {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1.15rem;
  }

  .contact-info-box {
    height: 400px;
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .container { padding: 2rem 1rem; }
  .hero-content h1 { font-size: 2.2rem; }
}
/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  margin-left: auto;
}
.hamburger .bar {
  display: block;
  width: 16px;
  height: 2px;
  margin: 2.5px 0;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.4s;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 600px) {
  .nav-links {
    left: 0;
    width: 100vw;
    padding: 1.2rem;
    box-sizing: border-box;
    position: absolute;
  }
  .nav-links.open {
    position: absolute;
    left: 0;
    width: 100vw;
    padding: 1.2rem;
    background: transparent;
    border-radius: 0;
  }
  .nav-links.open::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17,17,17,0.5);
    border-radius: 0;
    z-index: -1;
    transition: background 0.3s;
    display: block;
  }
  .navbar.scrolled .nav-links.open::before {
    background: rgba(17,17,17,1);
  }


  .navbar {
    flex-direction: row;
    height: auto;
    padding: 1.2rem 1rem 0.7rem 1rem;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
  }
  .logo {
    flex: 1 1 auto;
    color: #fff;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
    align-self: center;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 0;
    width: 100%;
    background: #111;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: none;
  }
  .nav-links {
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1), transform 0.35s cubic-bezier(0.4,0,0.2,1);
    gap: 2.1rem;
    padding: 1.2rem 1.2rem;
    border-radius: 8px;
    left: 2vw;
    width: 96vw;
    box-sizing: border-box;
  }
  .nav-links.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: fadeInMenu 0.45s cubic-bezier(0.4,0,0.2,1);
  }

  @keyframes fadeInMenu {
    from {
      background-color: rgba(17,17,17,0);
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
  .container { padding: 1.3rem 0.5rem; }
  .hero-content h1 { font-size: 1.3rem; }

