/* CSS Variables - New Color Scheme */ 
:root { 
  --primary: #1f2937; /* Primary color */ 
  --accent: #6b7280; /* Accent, secondary color */ 
  --accent-hover: #4b5563; /* Accent hover color */ 
  --accent-gradient: linear-gradient(135deg, #9ca3af 0%, #4b5563 100%); 
  --accent-soft: rgba(75, 85, 99, 0.12); 
  --accent-soft-strong: rgba(75, 85, 99, 0.18); 
  --card-bg: #ffffff; /* Card background */ 
  --text-dark: #111827; /* Dark text */ 
  --text-muted: #4b5563; /* Muted text */ 
  --border: #e5e7eb; /* Borders */ 
  --bg:#ffffff; 
  --shadow: 0 4px 20px rgba(31, 41, 55, 0.08); 
  --shadow-sm: 0 6px 20px rgba(0,0,0,0.06); 
  --shadow-md: 0 12px 30px rgba(0,0,0,0.10); 
  --shadow-lg: 0 20px 45px rgba(0,0,0,0.16); 
  --shadow-card-hover: 0 25px 60px rgba(0,0,0,0.18); 
  --shadow-hover: 0 12px 32px rgba(31, 41, 55, 0.15); 
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
} 

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
} 

html { 
  scroll-behavior: smooth; 
} 

body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; 
  line-height: 1.6; 
  color: var(--text-dark); 
  background-color: var(--bg); 
  overflow-x: hidden; 
} 

/* CONTACT SECTION */ 
.contact-section { 
  margin-top: 5%; 
  padding: 50px 20px;
  background: var(--bg); 
} 

.contact-container { 
  max-width: 1200px; 
  margin: 0 auto; 
} 

/* HEADER */ 

.contact-header { 
  text-align: center; 
  margin-bottom: 50px; 
} 

.contact-header h2 { 
  font-size: 42px; 
  font-weight: 800; 
  margin-bottom: 12px; 
  color: var(--primary); 
} 

.contact-header p { 
  font-size: 18px; 
  color: var(--text-muted); 
} 

/* GRID */ 

.contact-grid { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 40px; 
  align-items: stretch; 
  padding: 20px;

} 

/* MAP */ 
.map-box { 
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: var(--shadow-md); 
} 

.map-box iframe { 
  width: 100%; 
  height: 100%; 
  min-height: 360px; 
  border: none; 
} 

/* ADDRESS CARD */ 
.address-card { 
  background: var(--card-bg); 
  border-radius: 16px; 
  padding: 36px; 
  box-shadow: var(--shadow-md); 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
} 
.address-card h3 { 
  font-size: 16px; 
  color: var(--accent); 
  letter-spacing: 0.8px; 
  text-transform: uppercase; 
  margin-bottom: 6px; 
} 

.address-card h4 { 
  font-size: 26px; 
  font-weight: 700; 
  margin-bottom: 24px; 
  color: var(--primary); 
} 

/* ADDRESS LIST */ 
.address-list { 
  list-style: none; 
  padding: 0; 
  margin: 0 0 30px; 
} 

.address-list li { 
  
  display: flex; 
  gap: 14px; 
  align-items: flex-start; 
  font-size: 16px; 
  line-height: 1.6; 
  margin-bottom: 14px; 
  color: var(--text-dark); 
} 

.address-list li i { 
  color: var(--accent); 
  font-size: 18px; 
  margin-top: 4px;
  min-width: 20px; 
} 

.address-list span { 
  font-size: 18px; 
  color: var(--accent); 
}

.directions-btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  padding: 14px 24px; 
  background: var(--accent-gradient); 
  color: var(--bg); 
  font-weight: 600; 
  border-radius: 30px; 
  text-decoration: none; 
  transition: var(--transition); 
  width: fit-content; 
  box-shadow: var(--shadow-sm); 
} 

.directions-btn:hover { 
  transform: translateY(-3px); 
  box-shadow: var(--shadow-hover); 
  background: linear-gradient( 135deg, var(--accent-hover), var(--primary) ); 
}

/* ================= LARGE LAPTOPS (1025px - 1366px) ================= */
@media (min-width: 1025px) and (max-width: 1366px) {
  .contact-section {
    padding: 60px 30px;
  }

  .contact-header h2 {
    font-size: 38px;
  }

  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
  }

  .address-card {
    padding: 30px;
  }

  .map-box iframe {
    min-height: 340px;
  }
}

/* ================= TABLETS LANDSCAPE (769px - 1024px) ================= */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-section {
    padding: 50px 25px;
    margin-top: 6%;
  }

  .contact-header h2 {
    font-size: 34px;
  }

  .contact-header p {
    font-size: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .address-card {
    padding: 28px;
  }

  .address-card h4 {
    font-size: 22px;
  }

  .map-box iframe {
    min-height: 320px;
  }
}

/* ================= TABLETS PORTRAIT (601px - 768px) ================= */
@media (min-width: 601px) and (max-width: 768px) {
  .contact-section {
    padding: 45px 0px;
    margin-top: 8%;
  }

  .contact-header h2 {
    font-size: 30px;
  }

  .contact-header p {
    font-size: 15px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .address-card {
    padding: 26px;
  }

  .address-card h4 {
    font-size: 21px;
  }

  .map-box iframe {
    min-height: 300px;
  }

  .directions-btn {
    width: 100%;
    text-align: center;
  }
}

/* ================= LARGE MOBILES (481px - 600px) ================= */
@media (min-width: 481px) and (max-width: 600px) {
  .contact-section {
    padding: 40px 16px;
    margin-top: 10%;
  }

  .contact-header {
    margin-bottom: 35px;
  }

  .contact-header h2 {
    font-size: 26px;
  }

  .contact-header p {
    font-size: 14px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .address-card {
    padding: 22px;
  }

  .address-card h3 {
    font-size: 14px;
  }

  .address-card h4 {
    font-size: 20px;
  }

  .address-list li {
    font-size: 14px;
    gap: 10px;
  }

  .map-box iframe {
    min-height: 260px;
  }

  .directions-btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
    .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0;
  }

    .directions-btn {
    width: 100%;
    text-align: center;
  }
}