/* css/pages/inquiry.css - Enhanced Inquiry page styles */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

/* =====================
   PAGE HEADER
   ===================== */
.page-header {
  text-align: center;
  padding: var(--space-16, 5rem) var(--space-6, 1.5rem) var(--space-12, 3rem);
  background: linear-gradient(135deg, #e8f4fd 0%, #f0f9ff 40%, #e0f2fe 100%);
  margin-bottom: var(--space-12, 3rem);
  border-radius: 0 0 3rem 3rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px; right: -50px;
  animation: floatOrb 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-20px, 20px) scale(1.05); }
  66%       { transform: translate(10px, -15px) scale(0.95); }
}

.page-header h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: var(--space-4, 1rem);
  background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 60%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeSlideDown 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  position: relative; z-index: 1;
}

.page-header p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #475569; max-width: 600px; margin: 0 auto;
  animation: fadeSlideDown 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
  position: relative; z-index: 1;
}

/* =====================
   KEYFRAMES
   ===================== */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* =====================
   INQUIRY LAYOUT
   ===================== */
.inquiry__content {
  max-width: 1200px;
  margin: 0 auto;
}

.inquiry-forms {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-8, 2rem);
  margin-bottom: var(--space-12, 3rem);
}

@media (max-width: 768px) {
  .inquiry-forms { grid-template-columns: 1fr; }
}

/* =====================
   FORM SECTION
   ===================== */
.form-section {
  background: #ffffff;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 1.75rem;
  padding: var(--space-10, 2.5rem);
  animation: fadeSlideLeft 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0369a1, #0ea5e9, #38bdf8, #0369a1);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

.form-section h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  margin-bottom: var(--space-6, 1.5rem);
  color: #0369a1;
  font-size: 1.6rem;
}

/* =====================
   CONTACT INFO SIDEBAR
   ===================== */
.contact-info {
  background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 60%, #bae6fd 100%);
  border-radius: 1.75rem;
  padding: var(--space-8, 2rem);
  animation: fadeSlideRight 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
  border: 1px solid rgba(14, 165, 233, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-info::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  bottom: -60px; right: -60px;
  border-radius: 50%;
  pointer-events: none;
}

.contact-info h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  margin-bottom: var(--space-6, 1.5rem);
  color: #0369a1;
  font-size: 1.4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4, 1rem);
}

.contact-item {
  padding: var(--space-5, 1.25rem);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  border: 1px solid rgba(14, 165, 233, 0.15);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}

.contact-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.12);
}

.contact-item h3 {
  color: #0369a1;
  margin-bottom: var(--space-2, 0.5rem);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-item p {
  margin: 0;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* =====================
   DOWNLOADS SECTION
   ===================== */
.downloads {
  background: #ffffff;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 1.75rem;
  padding: var(--space-10, 2.5rem);
  margin-top: var(--space-12, 3rem);
  animation: fadeSlideUp 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  position: relative;
  overflow: hidden;
}

.downloads::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0369a1, #0ea5e9, #38bdf8, #0369a1);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

.downloads h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  margin-bottom: var(--space-8, 2rem);
  color: #0369a1;
  text-align: center;
  font-size: 1.6rem;
}

.downloads h2::after {
  content: '';
  display: block;
  width: 64px; height: 3px;
  background: linear-gradient(90deg, #0369a1, #0ea5e9);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5, 1.25rem);
}

.download-item {
  padding: var(--space-7, 1.75rem);
  background: linear-gradient(135deg, #f8fafc, #f0f9ff);
  border-radius: 1.25rem;
  text-align: center;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              background 0.3s ease;
  border: 1px solid rgba(14, 165, 233, 0.1);
  position: relative;
  overflow: hidden;
}

/* Document icon feel */
.download-item::before {
  content: '↓';
  display: block;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: #0369a1;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 44px;
  margin: 0 auto 1rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease;
}

.download-item:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(3, 105, 161, 0.14);
  border-color: rgba(14, 165, 233, 0.3);
}

.download-item:hover::before {
  transform: scale(1.15) rotate(-8deg);
  background: linear-gradient(135deg, #0369a1, #0ea5e9);
  color: #ffffff;
}

.download-item h3 {
  color: #0369a1;
  margin-bottom: var(--space-2, 0.5rem);
  font-size: 1rem;
  font-weight: 600;
}

.download-item p {
  margin-bottom: var(--space-4, 1rem);
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
}

/* =====================
   FORM INTERACTIONS
   ===================== */
.form-control {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  border-radius: 0.625rem !important;
}

.form-control:focus {
  transform: scale(1.005);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15) !important;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
}

.header__logo-img {
    max-height: 50px; /* Adjust based on your header size */
    width: auto;
    display: block;
}