/* Component Styles - Buttons, Cards, Forms, etc. */

/* Buttons */
.button {
  border: none;
  display: inline-block;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background-color: inherit;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  transition: box-shadow .3s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button:hover {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,.2), 0 2px 12px 0 rgba(0,0,0,.15);
  color: #000 !important;
  background-color: #ccc !important;
}

/* Button Group */
.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button-group .button {
  flex: 1;
  max-width: 280px;
  min-width: 220px;
  text-align: center;
  white-space: nowrap;
}

/* CTA Buttons */
.btn-cta {
  position: relative;
  transform: translateY(0);
  transition: all .2s ease;
  font-weight: 700;
  border-radius: 4px;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px 0 rgba(0,0,0,.2), 0 3px 12px 0 rgba(0,0,0,.15) !important;
}

.btn-cta:active {
  transform: translateY(0);
  transition: transform .1s;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #ff5722, #ff9800) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px 0 rgba(255,87,34,.4);
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #e64a19, #f57c00) !important;
  color: #fff !important;
}

.btn-cta-secondary {
  background: linear-gradient(135deg, #003282, #2196f3) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px 0 rgba(0,50,130,.4);
}

.btn-cta-secondary:hover {
  background: linear-gradient(135deg, #002171, #1976d2) !important;
  color: #fff !important;
}

.btn-cta-accent {
  background: linear-gradient(135deg, #efcc01, #ffc107) !important;
  color: #000 !important;
  box-shadow: 0 4px 12px 0 rgba(239,204,1,.4);
}

.btn-cta-accent:hover {
  background: linear-gradient(135deg, #d4af00, #ff8f00) !important;
  color: #000 !important;
}

.btn-cta-pulse {
  animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 4px 12px 0 rgba(255,87,34,.4); }
  50% { box-shadow: 0 4px 16px 0 rgba(255,87,34,.5); }
  100% { box-shadow: 0 4px 12px 0 rgba(255,87,34,.4); }
}

/* Header Contact Button */
.header-contact-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
  background: linear-gradient(135deg, #003282, #2196F3) !important;
  color: #fff !important;
  padding: 12px 20px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px 0 rgba(0,50,130,0.4) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.header-contact-btn:hover {
  background: linear-gradient(135deg, #002171, #1976D2) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px 0 rgba(0,50,130,0.6) !important;
  color: #fff !important;
}

.header-contact-btn i {
  margin-right: 8px;
}

/* Cards */
.card {
  box-shadow: 0 2px 8px 0 rgba(0,0,0,.12), 0 1px 4px 0 rgba(0,0,0,.08);
  transition: box-shadow .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 4px 12px 0 rgba(0,0,0,.15), 0 2px 8px 0 rgba(0,0,0,.1);
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card-header {
  background: linear-gradient(135deg, #003282, #2196f3);
  color: #fff;
  padding: 25px;
  text-align: center;
}

.service-card-body {
  padding: 25px;
}

.service-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.service-list li:last-child {
  border-bottom: none;
}

/* Team Cards */
.team-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  transition: all .3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

.team-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #003282, #2196f3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4em;
}

.team-content {
  padding: 25px;
}

/* Value Cards */
.value-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  border-left: 4px solid #003282;
}

.value-icon {
  color: #003282;
  font-size: 3em;
  margin-bottom: 20px;
}

/* Forms */
.contact-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px 0 rgba(0,0,0,.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #003282;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color .3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: #003282;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact Info Cards */
.contact-info-card {
  background: #003282;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info-card h3 {
  color: #fff;
  margin-bottom: 20px;
}

.contact-item {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-item i {
  width: 20px;
  margin-right: 12px;
  color: #fff;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #003282, #2196f3);
  color: #fff;
  padding: 60px 0;
  margin: 50px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3em;
  font-weight: 700;
  color: #fff;
  display: block;
}

.stat-label {
  font-size: 1.1em;
  color: rgba(255,255,255,.9);
  margin-top: 10px;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.timeline-year {
  background: #003282;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
  margin-right: 30px;
}

.timeline-content {
  flex: 1;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

/* Breadcrumb */
.breadcrumb {
  background: #f8f9fa;
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.breadcrumb a {
  color: #003282;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Modal */
.modal {
  z-index: 3;
  display: none;
  padding-top: 100px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000;
  background-color: rgba(0,0,0,.4);
}

.modal-content {
  margin: auto;
  background-color: #fff;
  position: relative;
  padding: 0;
  outline: 0;
  width: 600px;
  box-shadow: 0 8px 24px 0 rgba(0,0,0,.2), 0 4px 12px 0 rgba(0,0,0,.15);
  border-radius: 4px;
}

.animate-zoom {
  animation: animatezoom .6s;
}

@keyframes animatezoom {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
