body { 
    margin: 0; 
    font-family: Arial, sans-serif;
    background-color: #111; 
    color: #eee; 
}

header { display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1rem 2rem; 
    background-color: #0a0a0a; 
    border-bottom: 1px solid #333; 
}
    
header img { 
    height: 40px; 
    width: 40px; 
}
    
header nav a { 
    color: #ccc; 
    margin-left: 1rem; 
    text-decoration: none; 
    font-size: 0.9rem; 
}
    
header nav a:hover { 
    color: #fff; 
}
    
section { 
    padding: 4rem 2rem; 
}
    
.hero { 
    text-align: center; 
    
    background-color: #000; 
}
    
.hero h1 { 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
}
    
.hero p { 
    max-width: 600px; 
    margin: 0 auto 2rem; 
    color: #aaa; 
}
    
.btn { 
    background-color: #333; 
    color: #fff; 
    padding: 0.75rem 2rem; 
    border: none; 
    cursor: pointer; 
}
    
.services { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 2rem; 
}
    
.card { 
    background-color: #222; 
    padding: 1.5rem; 
    border-radius: 0.5rem; 
}
    
.card h3 { 
    margin-top: 1rem; 
}
    
.card p { 
    color: #bbb; 
}
    
.about, .contact { 
    background-color: #111; 
    text-align: center; 
}
    
.footer { 
    text-align: 
    center; 
    padding: 1rem; 
    border-top: 1px solid #333; 
    font-size: 0.85rem; 
    color: #888; 
}

#contact_name, #contact_email { 
width: 300px; 
padding: 0.75rem; 
background-color: #222; 
border: none; 
color: #fff; 
margin-bottom: 1rem;
vertical-align: middle;
}

#foo {
  resize: none;
  width: 300px; 
  padding: 0.75rem; 
  background-color: #222; 
  border: none; 
  color: #fff; 
  margin-bottom: 1rem;
  vertical-align: middle;
}


.about {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}

/* Desktop: side-by-side */
#img_about {
  width: 250px;
  flex: 0 0 auto;
  border-radius: 8px;
}

.about-text {
  flex: 1 1 300px;
  max-width: 600px;
  text-align: left;
  line-height: 1.6;
}

/* Mobile: stack vertically, center align */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;   /* stack vertically */
    align-items: center;      /* center all items */
  }

  #img_about {
    width: 80%;               /* make image smaller on mobile */
    max-width: 300px;         /* limit max size */
    margin-bottom: 20px;
  }

  .about-text {
    text-align: center;       /* center text on mobile */
    max-width: 90vw;          /* responsive width */
  }
}


.why-choose-wrapper {
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.why-choose-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-wrapper h3 {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.choose-item {
  border-left: 4px solid #555;
  padding-left: 15px;
}

.choose-label {
  display: block;
  font-weight: bold;
  color: #ccc;
  margin-bottom: 4px;
}



.footer {
  width: 100%;
}

.footer-main {
  display: flex;
  flex-wrap: nowrap; /* force side-by-side layout */
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 30px;
}
.footer-title {
  font-size: 1.2rem;
  color: #fff;
}
.footer-motto {
  font-style: italic;
  color: #aaa;
}
.footer a.footer-link,
.footer-col a {
  color: #aaa;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
}


.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  font-size: 0.85rem;
  color: #888;
}

.footer-fingerprint {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: #999;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.2s ease;
}

.footer-social img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

.footer-social a:hover img {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    max-width: 100%;
  }
}

.contact-form-horizontal {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0; /* no gap between left and right columns */
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-left {
  width: 35%;
  margin-right: 0;
}

.contact-right {
  width: 65%;
}

.contact-form-horizontal textarea {
  height: 100%;
  min-height: 160px;
  resize: none; /* ✅ Prevents resizing */
  line-height: 1.5;
  font-size: 1rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #1a1a1a; /* ✅ dark background */
  color: #fff; /* ✅ white text */
  box-sizing: border-box;
  width: 100%;
  appearance: none; /* ✅ Prevents OS default styles */
}

.contact-form-horizontal input,
.contact-form-horizontal button {
  width: 100%;
  box-sizing: border-box;
}

.contact-right .btn {
  align-self: flex-end;
  width: auto;
  min-width: 160px;
}

@media (max-width: 768px) {
  .contact-form-horizontal {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-form-horizontal textarea {
    width: 100%;
  }
}