



/* ========== Contact Hero Section ========== */
.contact-hero {
  /* background: linear-gradient(135deg, #ff7e5f, #feb47b); */
  position: relative;
  color: #fff;
  overflow: hidden;
  text-align: center;
  height: 75vh;
  /* Fix: Push content below fixed navbar */
  padding-top: 1rem;   /* adjust if your navbar is taller/shorter */
}


/* Glassy Content Card */
.hero-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  max-width: 750px;
  margin: 0 auto;
}

/* Title Styling */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #fff; /* solid white to keep it simple */
}

/* Underline Animation */
.underline {
  width: 80px;
  height: 4px;
  background: #fff;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  animation: expand 1.5s ease forwards;
}

@keyframes expand {
  from { width: 0; }
  to { width: 80px; }
}

/* Subtitle Text */
.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.95;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-hero{ padding-top: 5rem; height: 65vh; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-content { padding: 2rem 1.5rem; }
}



/* ================== Glassmorphism Circles ================== */
.circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.glass {
  background: rgba(255, 255, 255, 0.15); /* semi-transparent white */
  backdrop-filter: blur(12px);           /* glass blur effect */
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}




/* Floating Button Base */
.floating-order-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(to right, #f97316, #ef4444);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  z-index: 999;
  white-space: nowrap;
  padding: 8px 16px; /* smaller size */
  height: 45px; 
  font-size: 0.95rem;
}

/* Icon */
.floating-order-btn .icon i {
  font-size: 1.2rem;
  color: #fff;
  transition: transform 0.3s ease-in-out;
}

/* Button Text */
.floating-order-btn .btn-text {
  margin-left: 8px;
}

/* Hover Animation */
.floating-order-btn:hover {
  transform: scale(1.05); /* subtle zoom */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.floating-order-btn:hover .icon i {
  transform: rotate(20deg); /* small playful tilt */
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .floating-order-btn {
    font-size: 0.85rem;
    padding: 7px 14px;
    bottom: 20px;
    right: 20px;
    height: auto;
  }

  .floating-order-btn .icon i {
    font-size: 1rem;
  }
}







/* ========== Contact Form Section ========== */
.contact-form-section {
  background: #f9f9f9;
}

.form-wrapper {
  background: #fff;
  border-radius: 1.2rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 0 auto;
}

/* Header */
.form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}
.form-subtitle {
  font-size: 1rem;
  color: #666;
}

/* Input Groups */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #444;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid #ddd;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff7e5f;
  box-shadow: 0 0 8px rgba(255,126,95,0.2);
}

/* Textarea */
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Button */
.submit-btn {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  font-size: 1.1rem;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.submit-btn:hover {
  background: linear-gradient(135deg, #ff6a3d, #fd9a5a);
  transform: translateY(-2px);
}

/* Response Message */
.form-response {
  margin-top: 1rem;
  font-size: 0.95rem;
  text-align: center;
  color: #28a745;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .form-wrapper {
    padding: 2rem 1.5rem;
  }
  .form-title {
    font-size: 1.6rem;
  }
}








/* ===== Contact Info Cards ===== */

.contact-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
.info-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  width: 70px;
  height: 70px;
  /* background: #ff7043; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 6px 15px rgba(47, 46, 45, 0.4);
}

.info-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}

.info-text {
  font-size: 1rem;
  color: #666;
}

.info-text a {
  color: inherit;
  text-decoration: none;
}

.info-text a:hover {
  color: #ff7043;
}

/* ===== Map Card ===== */
.map-card {
  text-align: center;
}

.map-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #333;
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: 1000px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: scale(1.01);
}

/* ===== Social Media ===== */
.social-icons {
  display: flex;
}

.social-icon {
  font-size: 1.4rem;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Brand Colors */
.social-icon.facebook {
  background: #1877F2; /* Facebook Blue */
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); /* IG gradient */
}

.social-icon.twitter {
  background: #1DA1F2; /* Twitter Blue */
}

/* Hover Effects */
.social-icon:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}