* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
}

.site-footer {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen */
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg);
}

.footer-container {
  width: 100%;

  margin: 0px 60px;
  z-index: 2;
  height: 65%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* DECORATIVE ELEMENTS */
.footer-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.footer-watermark {
  position: absolute;
  bottom: -5%;
  left: 0;
  font-size: 25vw;
  font-weight: 800;
  color: var(--w05);
  line-height: 0.8;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* TOP HEADER AREA */
.footer-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  align-items: flex-start;
  gap: 2rem;
}

.brand-name {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.brand-name span {
  color: var(--primary);
}

.brand-subtext {
  color: var(--w38);
  margin-top: 10px;
  font-size: 1.1rem;
}

.cta-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* ATTRACTIVE BUTTON */
.btn-start {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-white-25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    border-color 0.3s,
    color 0.3s;
}

.btn-start:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* CONTACT BOX */
.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link i {
  color: var(--primary);
  font-size: 1.1rem;
}
.phone-link:hover {
  color: var(--primary);
}

.work-hours {
  display: block;
  font-size: 0.85rem;
  color: var(--w38);
  margin-top: 5px;
}

/* DIVIDER */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--w12), var(--w38), var(--w12));
  margin: 2rem 0;
}

/* MAIN GRID */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-transform: uppercase;
}
.footer-col p {
  font-family: var(--mono);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  color: var(--w38);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  text-decoration: none;
  color: var(--white);
  opacity: 0.7;
  transition: 0.3s;
}

.footer-col ul a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

/* SOCIAL GRID */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-size: 0.95rem;
  opacity: 0.8;
  transition: 0.3s;
}

.social-item i {
  width: 32px;
  height: 32px;
  background: var(--w05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  border: 1px solid var(--w12);
}

.social-item:hover {
  opacity: 1;
  color: var(--primary);
}
.social-item:hover i {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* NEWSLETTER */
.newsletter-wrap form {
  display: flex;
  flex-direction: row;

  border: 1px solid var(--w12);

  border-radius: 4px;
}

.newsletter-wrap form input {
  background: transparent;
  border: none;
  padding: 10px 15px;
  color: var(--white);
  flex: 1;
  outline: none;
}

.newsletter-wrap form button {
  background: var(--primary);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-top: 1px solid var(--w12);
  color: var(--w38);
  font-size: 0.9rem;
  
}

.legal-right a {
  text-decoration: none;
  color: var(--w38);
  margin: 0 10px;
}

.legal-right a:hover {
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .site-footer {
    height: auto;
    padding: 100px 40px;
  }
  .footer-header {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* RESPONSIVE - Enhanced */
@media (max-width: 992px) {
  .site-footer {
    height: auto;
    padding: 80px 40px 40px;
  }

  .footer-container {
    height: auto;
    gap: 0;
  }

  .footer-header {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    align-items: center;
    justify-items: center;
  }

  .brand-subtext {
    text-align: center;
  }

  .cta-label {
    text-align: center;
  }

  .btn-start {
    margin: 0 auto;
  }

  .newsletter-wrap {
    align-items: center;
    text-align: center;
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-watermark {
    font-size: 30vw;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 60px 40px 30px;
  }

  .footer-container {
    width: 92%;
  }
  .footer-container {
    width: 100%;
    max-width: 1320px;
    margin: 0px 0px;
    z-index: 2;
    height: 65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .brand-name {
    font-size: 2rem;
  }

  .footer-header {
    gap: 2rem;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem 0;
  }

  .legal-right {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .legal-right a {
    margin: 0 4px;
  }

  .footer-watermark {
    font-size: 38vw;
    bottom: -2%;
  }

  .newsletter-wrap input {
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  .phone-link {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .footer-col {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
  }

  .footer-col h4 {
    text-align: center !important;
  }

  .footer-col ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .footer-col ul li {
    text-align: center !important;
  }

  .footer-col ul li a {
    text-align: center !important;
    display: block !important;
  }

  .footer-main-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .social-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    justify-items: start !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 260px !important;
    margin: 0 auto !important;
  }

  .social-item {
    justify-content: flex-start !important;
    width: 100% !important;
  }

  .newsletter-wrap form {
    justify-content: center !important;
    width: 100% !important;
    max-width: 320px !important;
  }

  .footer-col:last-child {
    padding-bottom: 1rem;
  }

  .footer-divider {
    margin: 1.5rem 0 2.5rem !important;
  }

  .footer-bottom {
    margin-top: 2rem;
  }
}
@media (max-width: 600px) {
  .footer-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 2rem !important;
  }

  .brand-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .brand-subtext {
    text-align: center !important;
  }

  .cta-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .cta-label {
    text-align: center !important;
  }

  .btn-start {
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
    font-size: 12px;
    padding: 0.95rem 1.75rem;
  }

  .contact-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .phone-link {
    justify-content: center !important;
  }

  .work-hours {
    text-align: center !important;
  }
}
