/* TACT Management - Enhanced Styles */

:root {
  --color-primary: #dbc078;
  --color-dark: #3a3c3d;
  --color-light: #f9f9f9;
  --color-accent: #545454;
  --color-border: #e0e0e0;
  --font-display: 'Alata', sans-serif;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-light);
  line-height: 1.6;
}

/* HEADER & NAVIGATION */
.header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 40px;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  gap: 60px;
}

.logo {
  height: 90px;
  width: auto;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding-bottom: 5px;
}

.nav a:hover {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(58, 60, 61, 0.85) 0%, rgba(84, 84, 84, 0.85) 100%),
              url('images/hero.jpg') center/cover no-repeat;
  padding: 160px 40px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  margin-bottom: 30px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero a {
  margin-top: 20px;
}

/* CONTENT SECTIONS */
.content {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
  text-align: center;
}

.content h1 {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--color-accent);
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-accent);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content ul {
  text-align: left;
  display: inline-block;
  margin: 20px auto;
}

.content ul li {
  margin: 15px 0;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* SERVICE PAGES LAYOUT */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
}

.service-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-light);
  height: auto;
}

.service-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.service-content {
  padding: 20px;
  text-align: left;
}

.service-content h1 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--color-accent);
  margin-bottom: 25px;
  text-align: left;
  font-weight: 700;
}

.service-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-accent);
  margin-top: 35px;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
}

.service-content p {
  text-align: left;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-content ul {
  margin: 20px 0;
  padding-left: 25px;
}

.service-content ul li {
  margin: 12px 0;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* SERVICE LIST */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.service-box {
  background: white;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-box h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 22px;
}

.service-box h2 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-box h2 a:hover {
  color: #b8a05a;
}

.service-box p {
  text-align: center;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--color-primary);
  padding: 14px 32px;
  color: var(--color-dark);
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid var(--color-primary);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 20px;
}

.btn:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(219, 192, 120, 0.2);
}

button.btn {
  border: none;
  cursor: pointer;
}

/* TESTIMONIALS */
.testimonial {
  background: white;
  padding: 30px;
  border-left: 5px solid var(--color-primary);
  margin: 30px 0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  font-size: 17px;
  font-style: italic;
  color: #555;
  line-height: 1.8;
}

.testimonial-author {
  margin-top: 20px;
  font-style: normal;
  font-weight: 600;
  color: var(--color-accent);
  font-size: 15px;
}

/* CONTACT FORM */
.contact-form {
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-dark);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(219, 192, 120, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-accent);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: normal;
  margin: 0;
  cursor: pointer;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: #f0f0f0;
  margin-top: 60px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid var(--color-border);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
    justify-content: center;
    gap: 20px;
  }

  .logo {
    height: 70px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }

  .nav a {
    font-size: 13px;
  }

  .hero {
    padding: 100px 20px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px;
  }

  .content {
    padding: 0 20px;
    margin: 40px auto;
  }

  .content h1 {
    font-size: 32px;
  }

  .content h2 {
    font-size: 22px;
  }

  .service-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    margin: 40px auto;
  }

  .service-image {
    max-width: 100%;
  }

  .service-image img {
    max-width: 100%;
  }

  .service-content {
    padding: 0;
  }

  .service-content h1 {
    text-align: center;
    font-size: 28px;
  }

  .service-content h2 {
    text-align: center;
  }

  .service-content p {
    text-align: center;
  }

  .service-content ul {
    display: block;
    text-align: center;
    padding: 0;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .header {
    flex-direction: column;
  }

  .logo {
    height: 60px;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .content h1 {
    font-size: 26px;
  }

  .content h2 {
    font-size: 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}