/* ====== CONTACT HERO SECTION ====== */

/* ✅ CONTACT HERO SECTION */
.contact-hero-section{
  position: relative;
  width: 100%;
  background-image: url("images/contact-page-banner.jpg");
  
  /* ✅ CRITICAL: Remove any top positioning */
  margin-top: 0;
  padding-top: 0;
  top: 0;

  /* ✅ Height settings */
  height: 40vh;
  min-height: 260px;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ✅ Desktop: Hero section ko topbar + header ke neeche push karo */
@media (min-width: 992px) {
  .contact-hero-section {
    margin-top: calc(60px + 80px); /* topbar 60px + header 80px = 140px */
  }
  
  /* ✅ When scrolled and topbar hidden */
  body.nav-scrolled .contact-hero-section {
    margin-top: 80px; /* only header height */
  }
}

/* ✅ Mobile/Tablet: NO margin needed because body already has padding-top */
@media (max-width: 991px) {
  .contact-hero-section {
    margin-top: 0; /* Header CSS already has body padding-top: 80px */
    padding-top: 0;
  }
}

/* Black paint/grunge overlay effect */
.contact-hero-section__overlay{
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0,0,0,0.4) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0,0,0,0.5) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(0,0,0,0.3) 0%, transparent 40%);
  z-index: 1;
}

/* Content wrapper */
.contact-hero-section__content{
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 18px;
  max-width: 1100px;
}

/* Main Title "Contact Us" */
.contact-hero-section__title{
  font-size: 64px;
  font-weight: 900;
  color: #c40000;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ✅ Underline remove */
.contact-hero-section__title::after{
  display: none !important;
  content: none !important;
}

/* Breadcrumb "Home / Contact Us" */
.contact-hero-section__breadcrumb{
  margin-top: 14px;
  font-size: 22px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-hero-section__link{
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.contact-hero-section__link:hover{
  color: #c40000;
}

.contact-hero-section__slash{
  color: rgba(255,255,255,0.85);
}

.contact-hero-section__current{
  color: #ffffff;
  font-weight: 600;
}

/* ===== RESPONSIVE - ALL SCREENS ===== */

/* ✅ Laptop 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
  .contact-hero-section {
    height: 45vh;
    min-height: 240px;
  }
  
  .contact-hero-section__title{ 
    font-size: 50px; 
  }
  
  .contact-hero-section__breadcrumb{ 
    font-size: 20px; 
  }
}

/* ✅ Tablet 768px */
@media (max-width: 768px){
  .contact-hero-section{
    height: 45vh;
    min-height: 260px;
  }

  .contact-hero-section__title{ 
    font-size: 44px; 
  }
  
  .contact-hero-section__breadcrumb{ 
    font-size: 18px; 
  }
}

/* ✅ Mobile 520px */
@media (max-width: 520px){
  .contact-hero-section{
    height: 42vh;
    min-height: 260px;
  }

  .contact-hero-section__content{ 
    padding: 0 14px; 
  }
  
  .contact-hero-section__title{ 
    font-size: 34px; 
  }
  
  .contact-hero-section__breadcrumb{ 
    font-size: 16px; 
  }
}
/* Section 1 css */
/* ====== GET IN TOUCH SECTION ====== */
.get-in-touch-section {
  padding: 30px 20px;
  background-color: #f8f9fa;
}

.get-in-touch-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.get-in-touch-header {
  text-align: center;
  margin-bottom: 60px;
}

.get-in-touch-subtitle {
  font-size: 12px;
  font-weight: 700;
  color: #c40000;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.get-in-touch-title {
  font-size: 30px;
  font-weight: 900;
  color: #003366;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.get-in-touch-description {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 500;
}

/* Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Individual Card - EQUAL HEIGHT & WIDTH */
.contact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  
  /* ✅ EQUAL HEIGHT - Important! */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;  /* Fixed minimum height */
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Top colored border */
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #c40000;
}

.contact-card--location::before {
  background: #c40000;
}

.contact-card--call::before {
  background: #003366;
}

.contact-card--email::before {
  background: #ffc107;
}

/* Card Content Wrapper */
.contact-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* Icon Circle */
.contact-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-card--location .contact-card__icon {
  background: #c40000;
}

.contact-card--call .contact-card__icon {
  background: #003366;
}

.contact-card--email .contact-card__icon {
  background: #ffc107;
}

/* Card Title */
.contact-card__title {
  font-size: 26px;
  font-weight: 700;
  color: #003366;
  margin: 0 0 20px 0;
}

/* Card Text */
.contact-card__text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 8px 0;
}

/* Link styling */
.contact-card__link {
  color: #c40000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.contact-card__link:hover {
  color: #003366;
  text-decoration: underline;
}

/* Phone numbers */
.contact-card__phone {
  color: #c40000;
  font-weight: 700;
  font-size: 18px;
  display: block;
  margin: 5px 0;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-card__phone:hover {
  color: #003366;
}

/* Email */
.contact-card__email {
  color: #c40000;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  margin: 10px 0;
  transition: 0.3s ease;
}

.contact-card__email:hover {
  color: #003366;
}

/* Support text */
.contact-card__support {
  font-size: 15px;
  color: #888;
  margin-top: 10px;
}

/* ===== RESPONSIVE ===== */

/* ✅ Laptop 1024px - 3 cards ek row mein */
@media (max-width: 1024px) {
  .get-in-touch-title {
    font-size: 42px;
  }

  .get-in-touch-description {
    font-size: 16px;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr);  /* ✅ 3 columns maintain */
    gap: 20px;  /* Slightly reduced gap */
  }

  .contact-card {
    min-height: 360px;
    padding: 40px 20px;  /* Reduced padding for better fit */
  }

  .contact-card__title {
    font-size: 22px;
  }

  .contact-card__text {
    font-size: 15px;
  }
}

/* ✅ Tablet 768px - 2 cards per row */
@media (max-width: 768px) {
  .get-in-touch-section {
    padding: 60px 20px;
  }

  .get-in-touch-header {
    margin-bottom: 40px;
  }

  .get-in-touch-title {
    font-size: 36px;
  }

  .get-in-touch-description {
    font-size: 15px;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-card {
    min-height: 340px;
    padding: 40px 25px;
  }

  /* Third card LEFT side pe */
  .contact-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .contact-card__icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .contact-card__title {
    font-size: 22px;
  }
}

/* ✅ Mobile 520px - 1 card per row */
@media (max-width: 520px) {
  .get-in-touch-section {
    padding: 50px 15px;
  }

  .get-in-touch-header {
    margin-bottom: 30px;
  }

  .get-in-touch-title {
    font-size: 28px;
  }

  .get-in-touch-description {
    font-size: 14px;
    padding: 0 10px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding: 35px 20px;
    min-height: 320px;
  }

  .contact-card__title {
    font-size: 20px;
  }

  .contact-card__text {
    font-size: 15px;
  }

  .contact-card__phone,
  .contact-card__email {
    font-size: 16px;
  }
}

/* section 2 css */
/* ====== SEND MESSAGE FORM SECTION ====== */
.contact-form-section {
  padding: 30px 20px;
  background-color: #f8f9fa;
}

.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  
  /* ✅ Two Column Layout - Form Left, Image Right */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Side - Form */
.contact-form-left {
  width: 100%;
}

/* Right Side - Image */
.contact-form-right {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
.contact-form-header {
  text-align: left;
  margin-bottom: 35px;
}

.contact-form-title {
  font-size: 42px;
  font-weight: 900;
  color: #003366;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.contact-form-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Form */
.contact-form {
  display: grid;
  gap: 20px;
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
}

/* Input Fields */
.form-input,
.form-select,
.form-textarea {
  padding: 16px 20px;
  font-size: 15px;
  color: #333;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #003366;
  background: #ffffff;
}

/* Select Dropdown */
.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

/* Textarea */
.form-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
}

/* Submit Button */
.form-submit-btn {
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: #c40000;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.form-submit-btn:hover {
  background: #a00000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 0, 0, 0.3);
}

.form-submit-btn:active {
  transform: translateY(0);
}

/* Button Icon */
.form-submit-btn i {
  font-size: 18px;
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-btn--phone {
  background: #25d366;
}

.floating-btn--whatsapp {
  background: #25d366;
}

/* ===== RESPONSIVE ===== */

/* ✅ Laptop 1024px */
@media (max-width: 1024px) {
  .contact-form-container {
    padding: 50px 40px;
    gap: 40px;
  }

  .contact-form-title {
    font-size: 27px;
  }

  .contact-form-subtitle {
    font-size: 15px;
  }

  .contact-form-image {
    min-height: 450px;
  }

  .floating-buttons {
    bottom: 25px;
    left: 25px;
  }
}

/* ✅ Tablet 768px - Stack vertically */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 20px;
  }

  .contact-form-container {
    padding: 40px 30px;
    grid-template-columns: 1fr;  /* ✅ Single column */
    gap: 35px;
  }

  /* Image moves to bottom */
  .contact-form-right {
    order: 2;
    width: 100%;
  }

  .contact-form-left {
    order: 1;
  }

  /* ✅ Image proper size on tablet */
  .contact-form-image {
    min-height: 300px;
    max-height: 564px;
    width: 100%;
    object-fit: cover;
  }

  .contact-form-header {
    text-align: center;
  }

  .contact-form-title {
    font-size: 27px;
  }

  .contact-form-subtitle {
    font-size: 15px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 14px 18px;
    font-size: 14px;
  }

  .form-submit-btn {
    padding: 16px 35px;
    font-size: 15px;
  }

  .floating-buttons {
    bottom: 20px;
    left: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* ✅ Mobile 520px */
@media (max-width: 520px) {
  .contact-form-section {
    padding: 50px 15px;
  }

  .contact-form-container {
    padding: 30px 20px;
    border-radius: 12px;
    gap: 25px;
  }

  .contact-form-header {
    margin-bottom: 25px;
  }

  .contact-form-title {
    font-size: 24px;
  }

  .contact-form-subtitle {
    font-size: 14px;
  }

  .contact-form {
    gap: 15px;
  }

  /* ✅ Image proper size on mobile */
  .contact-form-image {
    min-height: 220px;
    max-height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 12px 16px;
    font-size: 14px;
  }

  .form-textarea {
    min-height: 120px;
  }

  .form-submit-btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .floating-buttons {
    bottom: 15px;
    left: 15px;
    gap: 12px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* section 3 css */
/* ====== NEED IMMEDIATE ASSISTANCE SECTION ====== */
.immediate-assistance-section {
  padding: 30px 20px;
  background-color: #f8f9fa;
}

.immediate-assistance-container {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 51, 102, 0.2);
}

/* Header */
.immediate-assistance-title {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.immediate-assistance-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px 0;
  line-height: 1.5;
}

/* Buttons Container */
.assistance-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Individual Button */
.assistance-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 700;
  color: #003366;
  background: #ffc107;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.assistance-btn:hover {
  background: #ffb300;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.assistance-btn:active {
  transform: translateY(0);
}

/* Button Icon */
.assistance-btn i {
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */

/* ✅ Laptop 1024px */
@media (max-width: 1024px) {
  .immediate-assistance-container {
    padding: 50px 35px;
  }

  .immediate-assistance-title {
    font-size: 38px;
  }

  .immediate-assistance-subtitle {
    font-size: 17px;
    margin-bottom: 35px;
  }

  .assistance-btn {
    padding: 15px 32px;
    font-size: 15px;
  }
}

/* ✅ Tablet 768px */
@media (max-width: 768px) {
  .immediate-assistance-section {
    padding: 60px 20px;
  }

  .immediate-assistance-container {
    padding: 45px 30px;
    border-radius: 16px;
  }

  .immediate-assistance-title {
    font-size: 32px;
  }

  .immediate-assistance-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .assistance-buttons {
    gap: 15px;
  }

  .assistance-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* ✅ Mobile 520px */
@media (max-width: 520px) {
  .immediate-assistance-section {
    padding: 50px 15px;
  }

  .immediate-assistance-container {
    padding: 35px 20px;
    border-radius: 14px;
  }

  .immediate-assistance-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .immediate-assistance-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .assistance-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .assistance-btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 25px;
    font-size: 14px;
    gap: 10px;
  }

  .assistance-btn i {
    font-size: 16px;
  }
}

/* map section */
/* ====== MAP SECTION ====== */
.map-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Map Header */
.map-header {
  text-align: center;
  margin-bottom: 50px;
}

.map-title {
  font-size: 42px;
  font-weight: 900;
  color: #003366;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.map-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Map Wrapper */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Google Map iFrame */
.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Map Info Card (Optional) */
.map-info-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  z-index: 10;
}

.map-info-title {
  font-size: 20px;
  font-weight: 700;
  color: #003366;
  margin: 0 0 10px 0;
}

.map-info-address {
  font-size: 14px;
  color: #666;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.map-info-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.map-info-stars {
  color: #ffc107;
}

/* View Larger Map Link (Optional) */
.map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #003366;
  background: #ffffff;
  border: 2px solid #003366;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.map-link-btn:hover {
  background: #003366;
  color: #ffffff;
}

/* ===== RESPONSIVE ===== */

/* ✅ Laptop 1024px */
@media (max-width: 1024px) {
  .map-title {
    font-size: 38px;
  }

  .map-subtitle {
    font-size: 17px;
  }

  .map-wrapper {
    height: 450px;
  }

  .map-info-card {
    max-width: 280px;
    padding: 18px 22px;
  }
}

/* ✅ Tablet 768px */
@media (max-width: 768px) {
  .map-section {
    padding: 60px 20px;
  }

  .map-header {
    margin-bottom: 40px;
  }

  .map-title {
    font-size: 32px;
  }

  .map-subtitle {
    font-size: 16px;
  }

  .map-wrapper {
    height: 400px;
    border-radius: 12px;
  }

  /* Info card moves to bottom on tablet/mobile */
  .map-info-card {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 20px;
    max-width: 100%;
  }
}

/* ✅ Mobile 520px */
@media (max-width: 520px) {
  .map-section {
    padding: 50px 15px;
  }

  .map-header {
    margin-bottom: 30px;
  }

  .map-title {
    font-size: 26px;
  }

  .map-subtitle {
    font-size: 14px;
  }

  .map-wrapper {
    height: 350px;
    border-radius: 10px;
  }

  .map-info-card {
    padding: 16px 20px;
  }

  .map-info-title {
    font-size: 18px;
  }

  .map-info-address {
    font-size: 13px;
  }
}