/* Base Styles */
:root {
  --primary-color: #121d1c;
  --accent-color: #ffffff;
  --text-color: #ffffff;
  --text-light: #cccccc;
  --text-dark: #333333;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "UmbaSans-Regular";
  src: url('../fonts/UmbaSans-Regular.woff2') format('woff2'),
       url('../fonts/UmbaSans-Regular.woff') format('woff');
  font-weight: 200;
  font-display: swap;
}

body {
  font-family: "UmbaSans-Regular", sans-serif;
  font-weight: 200;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--primary-color);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Baskerville BT", serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.gold {
  color: #cccccc;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 0.8rem 2rem;
  border: solid;
  border-radius: 999px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.btn:hover {
  background-color: #b69121;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-color);
  padding: 0.8rem 2.5rem;
  border: 2px solid var(--text-color);
  border-radius: 999px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-outline:hover {
  background-color: #cccccc;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

/* Header */
#header {
  background-color: #121d1c;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.body.overlay-open {
  overflow: hidden;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #101c1c;
  padding: 10px 20px;
  height: 70px;
  z-index: 1000;
}

/* Mobile Menu */
.mobile-menu-btn {
  position: absolute;
  left: 20px;
  top: 30%;
  transform: translateY(-50%);
  display: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
}

.logo-container img {
  max-height: 50px;
}

/* Navigation */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 150px;
  font-family: "Baskerville BT", serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links.left {
  margin-right: auto;
  padding-left: 100px;
}

.nav-links.right {
  margin-left: auto;
  padding-right: 100px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-family: "Umbasans", sans-serif;
  font-weight: 300;
}

.nav-links a:hover {
  color: #ccc;
}

/* Overlay Menu */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(16, 28, 28, 0.98);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: fadeIn 0.3s ease forwards;
}

.overlay.open {
  display: flex;
}

.overlay-menu {
  list-style: none;
  text-align: center;
}

.overlay-menu li {
  margin: 20px 0;
}

.overlay-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  background-color: #121d1c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  color: #ffffff;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  width: 100%;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 45%;
  z-index: 2;
  text-align: center;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #dddddd;
}

.hero-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 90%;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Split Section */
.split-section {
  padding: 6rem 3rem;
}

.content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
  flex-wrap: wrap;
}

.text-container,
.image-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-container h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

.split-section.reverse .content-container {
  flex-direction: row-reverse;
}

/* Testimonials */
.testimonials {
  padding: 6rem 3rem;
  background-color: #121d1c;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: white;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  border-left: 3px solid var(--accent-color);
  color: white;
}

.testimonial .quote {
  font-style: normal;
  margin-bottom: 1.5rem;
}

.testimonial .client {
  font-weight: 500;
  color: var(--accent-color);
}

/* CTA Section */
.cta {
  padding: 6rem 3rem;
  background-color: #121d1c;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background-color: #121d1c;
  padding: 4rem 3rem 1rem;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-logo {
  flex: 1 100%;
  min-width: 100%;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-links,
.footer-services,
.footer-contact {
  flex: 1;
  min-width: 220px;
}

footer h3 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.8rem;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.footer-contact i {
  margin-right: 0.8rem;
  color: var(--accent-color);
  margin-top: 0.3rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  font-size: 1.5rem;
}

.copyright {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Values Section */
.values-section {
  padding: 6rem 3rem;
  background-color: #121d1c;
}

.values-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.value-card {
  flex: 1 250px;
  min-width: 250px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.value-card h2 {
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

/* Team Section */
.team-section {
  padding: 6rem 3rem;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.team-member {
  flex: 1;
  min-width: 250px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  overflow: hidden;
}

.team-photo {
  height: 300px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3,
.team-member .position,
.team-member .bio {
  padding: 0 1.5rem;
}

.team-member h3 {
  margin: 1.5rem 0 0.5rem;
}

.team-member .position {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member .bio {
  padding-bottom: 1.5rem;
}

/* Process Section */
.process-section {
  padding: 6rem 3rem;
  background-color: #121d1c;
}

.process-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2.5rem;
}

.process-step {
  flex: 1;
  min-width: 200px;
  position: relative;
  padding-left: 4rem;
}

.process-step h2 {
  font-family: "Baskerville BT", serif;
  font-size: 2rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
}

.process-step p {
  font-family: "UmbaSans-Regular", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "UmbaSans-Regular", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  opacity: 0.7;
}

/* Contact Section */
.contact-section {
  padding: 6rem 3rem;
  background-color: #121d1c;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  gap: 5rem;
}

.contact-details {
  flex: 1;
  min-width: 300px;
}

.contact-form-container {
  flex: 1;
  min-width: 500px;
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.4rem;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: var(--text-light);
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 8px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  min-width: 500px;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  border-radius: 4px;
  color: var(--text-color);
  font-family: "UmbaSans-Regular", sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  border-radius: 999px;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: #b69121;
  transform: translateY(-2px);
}

/* Page Header */
.page-header {
  height: 40vh;
  background: url("https://woodlandparquetflooring/assets/images/lantai-kayu-indonesia-GbHHAszWAzM-unsplash.jpg")
    no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 84px;
  color: #fff;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 29, 28, 0.8);
}

.page-header-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 2rem;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gallery Section */
.content-section {
  padding: 60px 20px;
  background-color: #121d1c;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 90%;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 3rem;
  background-color: #121d1c;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-question h3 {
  margin-bottom: 0;
  flex: 1;
  font-size: 1.2rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: var(--transition);
  margin-left: 1rem;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1rem;
}

.faq-question.active + .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .split-section {
    padding: 4rem 2rem;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .content-container {
    flex-direction: column;
    gap: 2rem;
  }

  .split-section.reverse .content-container {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo,
  .footer-links,
  .footer-services,
  .footer-contact {
    min-width: 100%;
    text-align: center;
  }

  footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links ul,
  .footer-services ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .values-container,
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .value-card,
  .team-member {
    width: 100%;
    max-width: 90%;
  }

  .process-container {
    flex-direction: column;
    gap: 3rem;
  }

  .process-step {
    text-align: center;
    padding-left: 0;
  }

  .step-number {
    position: relative;
    left: auto;
    margin-bottom: 0.5rem;
  }

  .contact-section .content-container {
    flex-direction: column;
  }

  /* Center contact items */
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Center form elements */
  .form-group {
    min-width: 100%;
    text-align: center;
  }

  /* Center hero text */
  .hero-text {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .split-section {
    padding: 3rem 1.5rem;
  }
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop-specific adjustments */
@media (min-width: 769px) {
  /* Revert hero text alignment */
  .hero-text {
    text-align: left;
  }

  /* Footer columns back to left-aligned */
  .footer-links,
  .footer-services,
  .footer-contact {
    text-align: left;
  }

  .footer-links ul,
  .footer-services ul {
    align-items: flex-start;
    text-align: left;
  }

  .footer-contact p {
    justify-content: flex-start;
  }

  /* Ensure process steps stay in one line */
  .process-container {
    flex-wrap: nowrap;
  }

  /* Ensure values cards stay in one line */
  .values-container {
    flex-wrap: nowrap;
  }
}
/* Existing styles from styles.css assumed to be present */

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 20px;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-consent-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
}

.cookie-consent-content p {
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-consent-content a {
    color: #d4af37;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    background: #d4af37;
    color: #000;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #b8962e;
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 1px solid #d4af37;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

.cookie-preferences {
    margin-top: 10px;
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.cookie-preferences h3 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cookie-preferences label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.cookie-preferences input[type="checkbox"] {
    margin-right: 8px;
}

.cookie-preferences input[disabled] {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }
    .cookie-preferences {
        text-align: center;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}