/* styles.css - Clean Professional Light UI for Pause Info Solution */

:root {
  --primary-color: #0b5ed7; /* Professional blue */
  --primary-dark: #0a58ca;
  --bg-color: #f8f9fa;
  --surface-color: #ffffff;
  --border-color: rgba(0, 0, 0, 0.1);
  --text-primary: #212529;
  --text-secondary: #6c757d;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Typography & Links */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
  color: var(--primary-dark);
}

/* Header & Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1030;
  transition: background 0.4s ease, border-radius 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

/* Scrolled state: full-width white background with rounded bottom corners */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Hide the floating nav pill when scrolled — nav links now show in the bar */
.site-header.scrolled .d-lg-flex.rounded-pill {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.navbar-brand {
  color: var(--text-primary) !important;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-toggler {
  border-color: rgba(0,0,0,0.1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn-gold {
  background: var(--primary-color);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 94, 215, 0.2);
}



/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Service Cards */
.services {
  padding: 5rem 0;
  background: var(--surface-color);
}

.service-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.service-card i {
  display: block;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  margin: 0;
}

/* Floating Buttons */
.floating-button {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2000;
  transition: transform 0.3s;
}

.floating-button:hover {
  transform: scale(1.1);
}

.floating-whatsapp {
  background: #25D366;
  bottom: 30px;
  right: 30px;
  animation: pulse 2s infinite;
}

.floating-call {
  background: #34B7F1;
  bottom: 30px;
  left: 30px;
  animation: ring 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(52,183,241,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(52,183,241,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,183,241,0); }
}

/* Contact Form */
.contact-form {
  padding: 5rem 0;
  background: var(--bg-color);
}

.contact-form form {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  margin: 0 auto;
  max-width: 700px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

.contact-form .form-control, .contact-form .form-select {
  background: #fff;
  border: 1px solid #ced4da;
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  border-radius: 8px;
}

.contact-form .form-control:focus, .contact-form .form-select:focus {
  background: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(11, 94, 215, 0.25);
  color: var(--text-primary);
}

.contact-form .form-control::placeholder {
  color: var(--text-secondary);
}

/* Footer */
.site-footer {
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  margin-top: 5rem;
}

.site-footer p {
  color: var(--text-secondary);
}

.site-footer a {
  color: var(--primary-color) !important;
}
.site-footer a:hover {
  text-decoration: underline;
}
