/* -------------------- Base Styles -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  background: #fff8f0;
  color: #333;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}


/* Navbar */
/* -------------------- Navbar -------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #fffefd;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
}

/* -------------------- Logo -------------------- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}



/* -------------------- Nav Links -------------------- */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #f16836;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 0;
  transition: all 0.3s ease;
}

/* Animated underline effect */
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #ff4500;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  transform: scale(1.05);
}

/* -------------------- Hamburger Menu -------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #f16836;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger toggle animation to X */
.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* -------------------- Responsive -------------------- */
@media(max-width: 768px) {
  .hamburger {
    display: flex;
    /* Align hamburger properly next to logo */
    margin-right: 0;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    /* below navbar */
    right: -100%;
    width: 90%;
    /* not full screen */
    max-width: 300px;
    /* mobile panel width */
    height: calc(100vh - 70px);
    /* full height minus navbar */
    background: #fffefd;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 20px;
    padding: 10px 0;
  }

  .heading {
    font-size: 26px;
  }
}

@media(max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .heading {
    font-size: 22px;
  }

  .nav-links li a {
    font-size: 18px;
  }
}

/* -------------------- Logo -------------------- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}

.heading {

  font-size: 32px;
  color: #f16836;
}

/* -------------------- Nav Links -------------------- */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #f16836;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 0;
  transition: all 0.3s ease;
}

/* Animated underline effect */
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #ff4500;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  transform: scale(1.05);
}

/* -------------------- Hamburger Menu -------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
  position: absolute;
  right: 20px;
  /* fixed distance from right */
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #f16836;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger toggle animation to X */
.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Show hamburger on mobile */
@media(max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    /* below navbar */
    right: -100%;
    width: 90%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: #fffefd;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 20px;
    padding: 10px 0;
  }
}

/* -------------------- Responsive -------------------- */
@media(max-width: 768px) {
  .hamburger {
    display: flex;
    /* Align hamburger properly next to logo */
    margin-right: 0;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    /* below navbar */
    right: -100%;
    width: 90%;
    /* not full screen */
    max-width: 300px;
    /* mobile panel width */
    height: calc(100vh - 70px);
    /* full height minus navbar */
    background: #fffefd;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 20px;
    padding: 10px 0;
  }

  .heading {
    font-size: 26px;
  }
}

@media(max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .heading {
    font-size: 22px;
  }

  .nav-links li a {
    font-size: 18px;
  }
}


/* -------------------- Contact Section -------------------- */
.contact-section {
  padding: 120px 20px 50px;
  /* top padding to avoid overlap with fixed navbar */
  text-align: center;
}

.contact-section h1 {
  font-size: 2.5rem;
  color: #f16836;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s;
  text-align: center;
}

.card i {
  font-size: 2rem;
  color: #f16836;
  margin-bottom: 10px;
}

.card h3 {
  color: #f16836;
  margin-bottom: 8px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
}

/* Contact Container */
.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-info,
.contact-form {
  flex: 1 1 45%;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  min-width: 280px;
}

.contact-info h2,
.contact-form h2 {
  color: #f16836;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1rem;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.contact-form button {
  background: #f16836;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out, background 0.3s;
  font-size: 1rem;
}

.contact-form button:hover {
  transform: scale(1.05);
  background: #ff4500;
}

/* Extra style for About button */
.about .btn {
  padding: 12px 30px;
  background: #ff4500;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.about .btn:hover {
  background: #000;
}

/* Social Icons */
.socials {
  margin: 15px 0;
}

.socials a {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.4rem;
  color: #f16836;
  transition: transform 0.3s ease-in-out, color 0.3s;
}

.socials a:hover {
  color: #f16836;
  transform: scale(1.2);
}

/* Map */
.map {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* -------------------- Animations -------------------- */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-down {
  animation: fadeDown 1s ease-in-out;
}

.fade-up {
  animation: fadeUp 1s ease-in-out;
}

.slide-left {
  animation: slideLeft 1s ease-in-out;
}

.slide-right {
  animation: slideRight 1s ease-in-out;
}

.fade-in {
  animation: fadeIn 2s ease-in-out;
}

.bounce {
  animation: bounce 2s infinite;
}

.zoom-in {
  animation: zoomIn 1s ease-in-out;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 90%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: #fffefd;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 20px;
    padding: 10px 0;
  }

  .heading {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 50px;
    height: 50px;
  }

  .heading {
    font-size: 22px;
  }

  .nav-links li a {
    font-size: 18px;
  }

  .contact-section h1 {
    font-size: 2rem;
  }
}

/* -------------------- Footer -------------------- */

/* Footer */
/* Footer */
footer {
  background: #000;
  color: #fff;
  padding: 60px 10%;
  font-family: 'Roboto', sans-serif;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-content>div {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-content h4 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #ff4500;
  position: relative;
  display: inline-block;
  /* ensures line aligns with text width */
}

.footer-content h4::after {
  content: '';
  display: block;
  width: 60%;
  /* responsive width relative to h4 */
  max-width: 100px;
  /* optional: max limit */
  height: 2px;
  background: #ff4500;
  margin-top: 5px;
  border-radius: 2px;

}


.footer-content ul {
  list-style: none;
  padding: 0;

}

.footer-content ul li {
  margin-bottom: 10px;
}

.footer-content ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;

}

@media(max-width: 480px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-content>div {
    min-width: 100%;
  }

  .footer-content ul {
    list-style: none;
    padding: 0;
    text-align: center;

  }
}

.footer-content ul li a:hover {
  color: #ff4500;
  transform: translateX(5px);
}

/* Locations */

.locations {
  max-height: 100px;
  /* limit height */
}

.footer-content .locations p {
  line-height: 1.6;
  color: #ccc;
}

/* Social Media */
/* Social Media Section */
.footer-content .social-media {
  text-align: center;
  /* center heading and icons */
  display: flex;
  flex-direction: column;
}

.footer-content .social-media h4 {
  font-size: 20px;
  color: #ff4500;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.footer-content .social-media h4::after {
  content: '';
  display: block;
  width: 50%;
  max-width: 100px;
  height: 2px;
  background: #ff4500;
  margin: 5px auto 0;
  border-radius: 2px;
}

.footer-content .social-media a {
  display: inline-block;
  margin: 5px 10px;
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-content .social-media a:hover {
  background: #ff4500;
  color: #fff;
  transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-bottom a {
  color: #ff4500;
  text-decoration: none;
}

/* Responsive */
@media(max-width: 768px) {
  .footer-content .social-media a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    margin: 5px 5px;
  }

  .footer-content .social-media h4 {
    font-size: 18px;
  }
}

@media(max-width: 480px) {
  .footer-content .social-media a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    margin: 5px 3px;
  }

  .footer-content .social-media h4 {
    font-size: 16px;
  }
}