
:root {
  --primary:  rgb(149, 52, 13);
  --secondary: rgb(15, 24, 124);
  --dark:  rgb(6, 16, 60);
  --bg-color: #ffffff;
  --hover-bg: #f1f5f9; 
  --light: #f8f9fa;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: white;
  color: var(--dark);
}
    
.gradient-text {
  font-family: "Montserrat", sans-serif;
  background-image: linear-gradient(
    90deg,
    rgb(149, 52, 13) 0%,
    rgb(165, 109, 86) 40%,
    rgb(15, 24, 124) 50%,
    rgb(68, 84, 147) 70%,
    rgb(6, 16, 60) 100%
  );
  color: transparent;
  background-size: contain;
  background-clip: text;
  -webkit-background-clip: text;
}
.map-link {
  color: var(--primary);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.map-link:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.map-link::after {
  content: '📍';
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-link:hover::after {
  opacity: 1;
}
.nav {
font-family: "montserrat";
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem;
background: white;
box-shadow: var(--shadow);
position: relative;
z-index: 100;
}

.nav__logo {
font-size: 1.25rem;
font-weight: 600;
width: 70px;
height: 70px;
}

.nav__links {
display: flex;
gap: 2rem;
align-items: center;
}

.nav__link {
color: var(--primary);
text-decoration: none;
padding: 0.5rem;

}

.nav__link:hover {
font-weight: bold;
color: var(--secondary);
border-bottom: 2px solid var(--primary);
}


.nav__hamburger {
display: none;
color: var(--primary);
font-size: 25px;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
border-radius: 0.375rem;
}


@media (max-width: 768px) {
.nav__links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.nav__links--active {
  max-height: 1000px;
  padding: 1rem;
}

.nav__link {
  width: 100%;
  text-align: center;
  padding: 1rem;
}

.nav__hamburger {
  display: block;
  order: 1;
}
.nav__logo {
  font-size: 1.25rem;
  font-weight: 600;
  width: 70px;
  height: 70px;
}

}
.contact-hero {
  background: linear-gradient(rgba(81, 96, 154, 0.8), rgba(29, 31, 74, 0.8)), url('../Photos/industrial-port-container-yard\ \(3\).jpg') center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  position: relative;
}

.contact-hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.5s;
}

/* Contact Methods Grid */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: -100px auto 100px;
  padding: 0 20px;
}

.contact-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.3, 0, 0.3, 1);
  opacity: 0;
  transform: translateY(50px);
}

.contact-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 30px;
  color: white;
  transition: all 0.3s ease;
}

/* Contact Form Section */
.form-section {
  background:white;
  padding: 100px 20px;
}
.form-photo-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 1024px) {
  .form-photo-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .photo-collage {
    order: -1; /* Photos first on mobile */
    height: 400px;
    margin-top: 0;
  }
}
.form-container {
  position: relative;
  z-index: 2;
  will-change: opacity, transform;
  max-width: 800px;
  background: white;
  border-radius: 30px;
  border: 2px solid #0f187c;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}



.form-group {
  margin-bottom: 30px;
  position: relative;
}

.form-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.1s ease;
}

.form-input:focus {
  border-color: var(--primary);
  outline: none;
}
.form-photo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.photo-collage {
  position: relative;
  height: 500px;

}

.form-photo {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;

}

.form-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-1 {
  width: 70%;
  height: 60%;
  top: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-5deg) translateY(30px);

}

.photo-2 {
  width: 60%;
  height: 50%;
  bottom: 0;
  right: 0;
  z-index: 1;
  transform: rotate(8deg) translateY(30px);

}

.photo-3 {
  width: 50%;
  height: 45%;
  top: 30%;
  left: 25%;
  z-index: 3;
  transform: rotate(-3deg) translateY(30px);

}



@media (max-width: 1024px) {
  .form-photo-container {
    grid-template-columns: 1fr;
  }

  .photo-collage {
    height: 400px;
    margin-top: 60px;
  }
}
.floating-label {
  position: absolute;
  left: 15px;
  top: 15px;
  background: white;
  padding: 0 5px;
  transition: all 0.2s ease;
  pointer-events: none;
  color: #666;
}

.form-input:focus ~ .floating-label,
.form-input:not(:placeholder-shown) ~ .floating-label {
  top: -10px;
  font-size: 12px;
  color: var(--primary);
}


/* Enhanced FAQ Section */
.faq-section {
  padding: 100px 20px;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background: white;
  /* border-radius: 15px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  border: 1px solid #95340d;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: rgba(0, 87, 146, 0.03);
}

.faq-question span {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--dark);
  flex: 1;
  margin-right: 20px;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 87, 146, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-icon i {
  color: var(--primary);
  transition: all 0.3s ease 0.1s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 30px;

}

.faq-answer p {
  padding: 0 0 25px;
  line-height: 1.8;
  color: #a56d56;
}

/* Active State */
.faq-item.active {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  transform: rotate(90deg);
}

.faq-item.active .faq-icon i {
  color: white;
  transform: rotate(180deg);
}

/* Staggered Animation */
.faq-item:nth-child(1) {
  transition-delay: 0.1s;
}
.faq-item:nth-child(2) {
  transition-delay: 0.2s;
}
.faq-item:nth-child(3) {
  transition-delay: 0.3s;
}
.faq-item:nth-child(4) {
  transition-delay: 0.4s;
}
.faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-methods {
    margin-top: -50px;
  }

  .form-container {
    padding: 30px;
  }

  .live-chat {
    bottom: 20px;
    right: 20px;
  }
}
.site-footer {
  font-family: "Montserrat";
  background: #95340d;
  color: #ffffff;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: white;
}

.footer-text {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  text-decoration: none;
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #a56d56;
  transform: translateY(-3px);
}

.footer-links li {
  list-style: none; /* Add this line */
  text-decoration: none;
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a56d56;
}

.contact-info li {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #cccccc;
}

.contact-info i {
  margin-right: 1rem;
  color: #a56d56;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.copyright {
  color: #cccccc;
  font-size: 0.9rem;
}


.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0f187c;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}


@media (max-width: 768px) {
  .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .footer-heading::after {
      left: 50%;
      transform: translateX(-50%);
  }

  .social-links {
      justify-content: center;
  }

  .contact-info li {
      justify-content: center;
  }

  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }}
  .whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background:#95340d; 
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #822c0a;
    transform: scale(1.1);
}

.whatsapp-icon {
    font-size: 32px;
}

/* Pulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(149, 52, 13,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}
.footer__links{
  text-decoration: none;
  color: #f8f9fa;
}
.footer__links:hover{
  text-decoration: none;
  color: #a56d56;
}
.card__links{
  text-decoration: none;
  color: #95340d;
}
.card__links:hover{
  text-decoration: none;
  color: #0f187c;
}