* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0b1f3a;
  color: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: #fff;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav ul li {
  cursor: pointer;
  transition: color 0.3s;
  color: #0b1f3a;
}

nav ul li:hover {
  color: #4caf50;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: #0b1f3a;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s;
}

.hamburger:hover {
  background: #1a3a5a;
}

/* SECTION */
.contact-section {
  position: relative;
  background: url("contactimg.webp") center/cover no-repeat;
  padding: 80px 20px;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(5,15,30,0.95) 50%,
    rgba(5,15,30,0.6) 75%,
    rgba(5,15,30,0.2) 100%
  );
  top: 0;
  left: 0;
}

/* CONTAINER */
.container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

/* LEFT */
.left {
  flex: 1;
}

.left h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.subtitle {
  margin-bottom: 25px;
  color: #ddd;
}

/* FORM */
.contact-form {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form .paint-select {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  border-radius: 5px;
}

.paint-select label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: normal;
}

.paint-toggle {
  cursor: pointer;
  user-select: none;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.checkbox-group.hidden {
  display: none;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 1.5em;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form select option {
  background: #0b1f3a;
  color: #fff;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(to right, #1b5e20, #4caf50);
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* RIGHT */
.right img {
  width: 420px;
  max-width: 100%;
  border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width: 768px){

  .navbar {
    padding: 10px 15px;
  }

  .logo img {
    height: 60px;
  }

  #nav-menu {
    display: none;
    position: absolute;
    background: rgba(11, 31, 58, 0.98);
    width: 100%;
    top: 60px;
    left: 0;
    z-index: 10;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  #nav-menu.active {
    display: block;
  }

  #nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  #nav-menu ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #fff;
  }

  .hamburger {
    display: block;
  }

  .container {
    flex-direction: column;
    text-align: left;
  }

  .left h1 {
    font-size: 36px;
  }

  .right img {
    margin-top: 20px;
  }
}


/* SECTION */
.contact-full {
  position: relative;
  background: url("image.jpeg") center/cover no-repeat;
  padding: 80px 20px 140px;
  overflow: hidden;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5,15,30,0.85);
}

/* CONTAINER */
.container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* LEFT */
.left {
  flex: 1;
}

.left h2 {
  color: #f4c36b;
}

.line {
  width: 70px;
  height: 2px;
  background: #ccc;
  margin: 10px 0 20px;
}

/* FORM */
form input,
form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 5px;
}

textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.cta-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: linear-gradient(to right, #1b5e20, #4caf50);
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: linear-gradient(to right, #0d3817, #388e3c);
}

/* RIGHT */
.right {
  flex: 1;
}

.right h2 {
  margin-bottom: 20px;
}

.info p {
  margin-bottom: 15px;
  font-size: 16px;
}


/* DECOR */
.decor {
  position: absolute;
  z-index: 1;
}

.brushes {
  bottom: 0;
  left: 0;
  width: 200px;
}

.paints {
  bottom: 0;
  left: 40%;
  transform: translateX(-50%);
  width: 300px;
}

.palette {
  bottom: 0;
  right: 0;
  width: 260px;
}

/* RESPONSIVE */
@media(max-width: 768px) {

  .container {
    flex-direction: column;
  }

  .brushes,
  .palette {
    display: none;
  }

  .paints {
    width: 200px;
  }
}

/* FOOTER */
.footer {
  background: #0b1f3a;
  color: #fff;
  padding: 60px 20px 20px;
  border-top: 2px solid #4caf50;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h2,
.footer-col h3 {
  margin-bottom: 15px;
  color: #4caf50;
}

.footer-col p {
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #4caf50;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border-radius: 50%;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #4caf50;
  color: #fff;
}

.newsletter input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 5px;
}

.newsletter input::placeholder {
  color: #999;
}

.newsletter button {
  width: 100%;
  padding: 10px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter button:hover {
  background: #45a049;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

/* RESPONSIVE FOOTER */
@media(max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer {
    padding: 40px 20px 20px;
  }
}