:root {
  --navy:#002f6c;
  --accent:#c41230;
  --glass:rgba(255,255,255,0.12);
  --border:rgba(255,255,255,0.25);
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;
  background: url('../images/vata-hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero-bg {
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.12), transparent),
    linear-gradient(120deg, rgba(0,47,108,.85), rgba(196,18,48,.6));
  animation: slowMove 12s infinite alternate;
}

@keyframes slowMove {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.hero-content {
  position:relative;
  text-align:center;
  max-width:850px;
  color:white;
}

.hero-chip {
  padding:10px 22px;
  border-radius:30px;
  background:rgba(255,255,255,0.18);
  display:inline-block;
  margin-bottom:25px;
}

.hero h1 {
  font-size:4rem;
  font-weight:800;
  letter-spacing:-1px;
}

.hero p {
  font-size:1.2rem;
  opacity:.9;
  margin:20px auto 35px;
}

.hero-buttons {
  display:flex;
  justify-content:center;
  gap:20px;
}

.btn {
  padding:16px 38px;
  border-radius:40px;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
}

.btn-primary:hover {
  background:var(--accent);
  color:white;
  transform:translateY(-3px);
}

.btn-ghost {
  border:2px solid white;
  color:white;
}

.btn-ghost:hover {
  background:white;
  color:var(--navy);
}

/* ================= INFO STRIP ================= */
.info-strip {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  background:#0b1f3a;
  color:white;
}

.info-item {
  padding:30px;
  text-align:center;
}

.info-item strong {
  display:block;
  margin-bottom:6px;
}

/* ================= CONTACT ================= */
.contact-main {
  padding:120px 20px;
  background:linear-gradient(180deg,#f8fafc,#ffffff);
}

.contact-wrapper {
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

/* GLASS CARD */
.glass-card {
  background:var(--glass);
  backdrop-filter:blur(20px);
  border:1px solid var(--border);
  border-radius:25px;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

/* FORM */
.form-card {
  padding:50px;
}

.form-card h2 {
  font-size:2.4rem;
  color:var(--navy);
}

.form-card p {
  color:#475569;
  margin-bottom:35px;
}

.field {
  position:relative;
  margin-bottom:28px;
}

.field input,
.field textarea,
.field select {
  width:100%;
  padding:16px;
  border-radius:14px;
  border:2px solid #e2e8f0;
  background:transparent;
  font-size:1rem;
}

.field label {
  position:absolute;
  top:50%;
  left:18px;
  transform:translateY(-50%);
  background:white;
  padding:0 6px;
  color:#64748b;
  pointer-events:none;
  transition:.3s;
}

.field input:focus + label,
.field textarea:focus + label,
.field select:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label,
.field select:not([value=""]) + label {
  top:-8px;
  font-size:.85rem;
  color:var(--navy);
}

.submit-btn {
  width:100%;
  padding:18px;
  border-radius:16px;
  border:none;
  font-size:1.1rem;
  font-weight:700;
  color:white;
  background:linear-gradient(135deg,var(--navy),#003f8f);
  cursor:pointer;
}

.submit-btn:hover {
  background:linear-gradient(135deg,var(--accent),#9f0f24);
}

/* MAP */
.map-card {
  position:relative;
  overflow:hidden;
}

.map-card iframe {
  width:100%;
  height:100%;
  min-height:550px;
  border:none;
}

.map-float {
  position:absolute;
  bottom:30px;
  left:30px;
  background:white;
  padding:18px 22px;
  border-radius:14px;
  animation: float 4s infinite ease-in-out;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #c41230, #ff5f6d);
  z-index: 9999;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(196, 18, 48, 0.08);
    color: var(--accent);
    font-weight: 700;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* CONTACT CARDS SECTION */
.contact-cards-section {
    padding: 0 0 80px;
    background: var(--bg-light);
    position: relative;
    z-index: 10;
    margin-top: -80px; /* Overlap hero */
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-card {
    background: white;
    padding: 50px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--navy), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.contact-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 47, 108, 0.05), rgba(196, 18, 48, 0.05));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    position: relative;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 47, 108, 0.1);
    transition: all 0.4s ease;
}

.contact-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--navy), var(--accent));
    color: white;
    transform: scale(1.1);
}

.contact-card:hover .icon-wrapper::after {
    border-color: rgba(255,255,255,0.3);
    transform: rotate(180deg);
}

.card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    gap: 8px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #cbd5e1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Approximate max height */
    padding-bottom: 20px;
}

/* SOCIAL STRIP */
.social-strip {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #004094 100%);
    color: white;
    text-align: center;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-icon-btn:hover {
    background: white;
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


@keyframes float {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-6px); }
}

/* ================= MOBILE ================= */
@media(max-width:900px){
  .contact-wrapper { grid-template-columns:1fr; }
  .hero h1 { font-size:2.7rem; }
  .hero-buttons { flex-direction:column; }
}
