/* ==========================================================================
   PAGE-SPECIFIC STYLES
   ========================================================================== */

/* --- HOMEPAGE SPECIFIC --- */

/* Hero Section */
.home-hero {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 12rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(238, 149, 47, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 10% 70%, rgba(0, 5, 137, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.home-hero-text {
  position: relative;
  z-index: 5;
}

.home-hero-tagline {
  font-family: var(--font-title);
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.home-hero-title {
  font-family: var(--font-tight);
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text-light);
}

.home-hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 620px;
}

.home-hero-buttons {
  display: flex;
  gap: 1rem;
}

.home-hero-graphic {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Geometric Logo-like abstract visual */
.hero-geometric-shape {
  width: 80%;
  height: 80%;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphing 15s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(238, 149, 47, 0.2) 0%, rgba(0, 5, 137, 0.6) 100%);
  position: relative;
}

@keyframes morphing {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Home Section Header */
.section-header {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-tagline {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-tight);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

/* --- ABOUT PAGE --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.value-card {
  padding: 3rem 2.5rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* --- SERVICES & DETAIL PAGES --- */
.service-hero-stats {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color-light);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-tight);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* --- START YOUR PROJECT (CONTACT) PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  list-style: none;
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info-text h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Form Styles */
.contact-form {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(0, 5, 137, 0.15);
  border-radius: var(--border-radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 5, 137, 0.1);
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* --- RESPONSIVE PAGES --- */
@media (max-width: 1024px) {
  .home-hero-title { font-size: 3.25rem; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .home-hero-graphic { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .home-hero-title { font-size: 2.5rem; }
  .home-hero { padding: 9rem 0 5rem; }
  .home-hero-buttons { flex-direction: column; }
  .contact-form { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .service-hero-stats { flex-direction: column; gap: 1.5rem; }
}
