/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap");

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
}

/* Hero */
.contact-hero {
  position: relative;
  height: 100vh;
  background: url("../images/contact-banner.jpg") center/cover no-repeat;
}

.contact-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.contact-hero h1 {
  position: relative;
  font-size: 3rem;
  z-index: 2;
}


/* Contact Section */
.contact-section {
  margin-top: 100px;
  padding: 60px 0;
  background: #f9fafc;
  font-family: "Segoe UI", sans-serif;
}

/* Contact Boxes */
.contact-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Titles */
.contact-box h3 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
}

/* Info Items */
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: #0077ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0,119,255,0.25);
}

.info-item h6 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 3px;
}

.info-item p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* Form Styling */
.form-box .form-control {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-box .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.3);
}
.form-box .form-control::placeholder {
  color: #aaa;
}

/* Button */
.btn-custom {
  background: #0077ff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  border: 1px solid blue;
  transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 768px) {
  .contact-box {
    padding: 25px;
  }
  .icon-circle {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Floating Call Button */
.call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0d6efd;
  color: #fff;
  font-size: 1.5rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 999;
}
.call-btn:hover {
  background: #084298;
}
