*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  color: #0f172a;
  background: #f8fafc;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #f9fafb;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 650;
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.75rem;
  color: #6b7280;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
  color: #4b5563;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  transition: width 0.18s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.6rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-weight: 500;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out, border-color 0.12s ease-out, color 0.12s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #10b981);
  color: #f9fafb;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, #2563eb, #059669);
}

.btn-secondary {
  background: #0f172a;
  color: #e5e7eb;
}

.btn-secondary:hover {
  background: #020617;
}

.btn-ghost {
  background: transparent;
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.03);
}

.btn-large {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
}

.full-width {
  width: 100%;
}

main {
  padding-top: 1.5rem;
}

.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.75) 50%, rgba(15, 23, 42, 0.9) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-copy {
  color: #ffffff;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #60a5fa;
  font-weight: 600;
}

.eyebrow::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: linear-gradient(90deg, #60a5fa, #34d399);
}

.hero-copy h1 {
  margin: 0.5rem 0 0.85rem;
  font-size: clamp(2.3rem, 3vw, 2.9rem);
  letter-spacing: -0.035em;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  margin: 0 0 1.8rem;
  color: #e5e7eb;
  font-size: 0.98rem;
  max-width: 34rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.quote-form,
.enquiry-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1.2rem;
  padding: 1.1rem 1.25rem 1.25rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.quote-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.45rem;
}

.quote-input-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.quote-input-row input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.quote-input-row input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.4);
}

.form-helper {
  margin: 0;
  font-size: 0.76rem;
  color: #9ca3af;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.trust-pill {
  font-size: 0.78rem;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 1.4rem;
  padding: 1.35rem 1.3rem 1.3rem;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #4b5563;
  margin-bottom: 0.7rem;
}

.badge-soft {
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  font-weight: 500;
}

.hero-card-body {
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.9rem 0.95rem;
}

.hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
}

.hero-card-row span:first-child {
  color: #6b7280;
}

.hero-card-row.muted span:last-child {
  color: #6b7280;
}

.hero-card-value {
  font-weight: 500;
}

.hero-card-price {
  font-weight: 650;
  font-size: 1.1rem;
}

.hero-card-divider {
  border-top: 1px dashed rgba(148, 163, 184, 0.7);
  margin: 0.55rem 0;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: #4b5563;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-card-list li::before {
  content: '✓';
  color: #16a34a;
  font-size: 0.82rem;
}

.section {
  padding: 3.25rem 0;
}

.section-muted {
  background: #f1f5f9;
}

.section-header {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 2.1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.section-header h2 {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.3rem 1.25rem 1.2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
}

.product-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card:nth-child(3) {
  animation-delay: 0.3s;
}

.product-card h3 {
  margin-top: 0.7rem;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.product-card:hover h3 {
  color: #3b82f6;
}

.product-card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.product-card ul li::before {
  content: '•';
  color: #3b82f6;
  margin-right: 0.35rem;
  font-weight: bold;
}

.text-link {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 0.86rem;
  color: #3b82f6;
  cursor: pointer;
  font-weight: 500;
}

.text-link:hover {
  text-decoration: underline;
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  position: relative;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.card-icon::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: #f9fafb;
  mask-size: 70%;
  mask-position: center;
  mask-repeat: no-repeat;
}

.card-icon.car::after {
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 16.5C5 17.3284 5.67157 18 6.5 18C7.32843 18 8 17.3284 8 16.5C8 15.6716 7.32843 15 6.5 15C5.67157 15 5 15.6716 5 16.5Z' fill='%230f172a'/%3E%3Cpath d='M16 16.5C16 17.3284 16.6716 18 17.5 18C18.3284 18 19 17.3284 19 16.5C19 15.6716 18.3284 15 17.5 15C16.6716 15 16 15.6716 16 16.5Z' fill='%230f172a'/%3E%3Cpath d='M4.59724 9.55279L5.73843 7.44721C6.2684 6.46725 7.29477 5.875 8.40192 5.875H15.5981C16.7052 5.875 17.7316 6.46725 18.2616 7.44721L19.4028 9.55279C19.7874 10.2643 20 11.0538 20 11.8565V15.25C20 15.6642 19.6642 16 19.25 16H18.5C18.2239 16 18 15.7761 18 15.5V14.25C18 13.8358 17.6642 13.5 17.25 13.5H6.75C6.33579 13.5 6 13.8358 6 14.25V15.5C6 15.7761 5.77614 16 5.5 16H4.75C4.33579 16 4 15.6642 4 15.25V11.8565C4 11.0538 4.21263 10.2643 4.59724 9.55279Z' fill='%230f172a'/%3E%3C/svg%3E");
}

.card-icon.home::after {
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.25 16.75V14C10.25 13.3096 10.8096 12.75 11.5 12.75H12.5C13.1904 12.75 13.75 13.3096 13.75 14V16.75' stroke='%230f172a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 10.75L12 6.25L17 10.75V17.25C17 17.6642 16.6642 18 16.25 18H7.75C7.33579 18 7 17.6642 7 17.25V10.75Z' stroke='%230f172a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.card-icon.heart::after {
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.995 19.25C11.995 19.25 4.75 15.25 4.75 9.75C4.75 7.67893 6.42893 6 8.5 6C9.88071 6 11.0907 6.77651 11.6421 7.9461C12.1934 6.77651 13.4034 6 14.7841 6C16.8552 6 18.5341 7.67893 18.5341 9.75C18.5341 15.25 11.995 19.25 11.995 19.25Z' stroke='%230f172a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.steps .step {
  position: relative;
  padding-top: 0.3rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.steps .step:nth-child(1) {
  animation-delay: 0.1s;
}

.steps .step:nth-child(2) {
  animation-delay: 0.2s;
}

.steps .step:nth-child(3) {
  animation-delay: 0.3s;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #0f172a;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  margin-bottom: 0.65rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  background: linear-gradient(135deg, #3b82f6, #10b981);
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.08));
  border-color: rgba(59, 130, 246, 0.2);
}

.faq-list {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #ffffff;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

.faq-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: #4b5563;
}

.cta-section {
  padding-bottom: 3rem;
}

.cta-inner {
  opacity: 0;
  animation: scaleIn 0.8s ease-out forwards;
  animation-delay: 0.2s;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 50%, #065f46 100%);
  color: #e5e7eb;
  padding: 1.7rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(59, 130, 246, 0.5);
}

.cta-inner h2 {
  margin: 0 0 0.4rem;
  font-size: 1.55rem;
}

.cta-inner p {
  margin: 0;
  font-size: 0.92rem;
  color: #cbd5f5;
}

.footer {
  background: #0b1120;
  color: #9ca3af;
  padding-top: 2.3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.footer-brand .logo-mark {
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.4);
}

.footer-copy {
  margin-top: 0.8rem;
  font-size: 0.86rem;
  max-width: 20rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
  font-size: 0.86rem;
}

.footer-links h4 {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.footer-links a {
  display: block;
  margin-bottom: 0.25rem;
  color: #9ca3af;
}

.footer-links a:hover {
  color: #e5e7eb;
}

.footer-bottom {
  padding: 0.7rem 0 1.4rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
}

.footer-small {
  color: #6b7280;
}

/* Image Showcase Section */
.image-showcase {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showcase-image-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
  position: relative;
}

.showcase-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
  z-index: 1;
  pointer-events: none;
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.showcase-image-wrapper {
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out forwards;
}

.showcase-image-wrapper:hover .showcase-image {
  transform: scale(1.05);
}

.showcase-text {
  opacity: 0;
  animation: fadeInRight 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.showcase-text h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.showcase-text p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.showcase-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.showcase-features li {
  font-size: 0.95rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0;
}

.showcase-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding: 3rem 0 4rem;
  }

  .hero-inner {
    max-width: 100%;
  }

  .nav-links {
    display: none;
  }

  .showcase-content {
    grid-template-columns: 1fr;
  }

  .showcase-image-wrapper {
    order: -1;
  }
}

@media (max-width: 720px) {
  .nav-actions {
    display: none;
  }

  .hero {
    padding-top: 2rem;
    min-height: auto;
  }

  .quote-input-row {
    flex-direction: column;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    row-gap: 1.2rem;
  }

  .footer-bottom-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  background: #20BA5A;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 720px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* About Us Page Styles */
.nav-links a.active {
  color: #3b82f6;
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
}

.about-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.75) 50%, rgba(15, 23, 42, 0.9) 100%);
  z-index: 1;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-copy {
  color: #ffffff;
  animation: fadeInUp 0.8s ease-out;
  text-align: center;
}

.about-hero-subtitle {
  margin: 1rem 0 0;
  color: #e5e7eb;
  font-size: 1.1rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content-grid.reverse {
  direction: rtl;
}

.about-content-grid.reverse > * {
  direction: ltr;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.about-image-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.mission-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
}

.mission-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.mission-card h3 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  color: #0f172a;
}

.mission-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.8rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
}

.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.value-card h4 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: #0f172a;
}

.value-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.2);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.about-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-features-list li {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-features-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 0.1rem;
}

.about-features-list li strong {
  color: #0f172a;
  font-weight: 600;
}

@media (max-width: 960px) {
  .about-content-grid {
    grid-template-columns: 1fr;
  }

  .about-content-grid.reverse {
    direction: ltr;
  }

  .about-image-wrapper {
    order: -1;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .about-hero {
    min-height: auto;
    padding: 3rem 0 2.5rem;
  }

  .about-hero-subtitle {
    font-size: 0.95rem;
  }

  .image-gallery {
    grid-template-columns: 1fr;
  }

  .mission-card {
    padding: 1.5rem;
  }

  .value-card {
    padding: 1.5rem;
  }
}


