/* About page styles */
body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
  color: #333;
}

.main-content {
  padding: 100px 20px 50px;
  min-height: 70vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2099d7;
}

.container p {
  font-size: 1.2rem;
  color: #666;
}

/* Floating Quote Icon Styles */
.floating-quote-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float 3s ease-in-out infinite;
}

.floating-quote-icon .icon-content {
  background: linear-gradient(135deg, #2099d7 0%, #48b3e8 100%);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(32, 153, 215, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.floating-quote-icon .icon-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-quote-icon:hover .icon-content::before {
  opacity: 1;
}

.floating-quote-icon .icon-content dotlottie-wc {
  margin-bottom: 2px;
}

.floating-quote-icon .icon-content span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-quote-icon:hover {
  transform: translateY(-4px) scale(1.05);
  animation-play-state: paused;
}

.floating-quote-icon:hover .icon-content {
  box-shadow: 0 12px 40px rgba(32, 153, 215, 0.6);
}

.floating-quote-icon:active {
  transform: translateY(-2px) scale(1.02);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Floating Form Modal Styles */
.floating-form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-form-modal.active {
  opacity: 1;
  visibility: visible;
}

.floating-form-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.floating-form-modal .modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(50px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-form-modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.floating-form-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
}

.floating-form-modal .modal-header h2 {
  font-family: "adobe-caslon-pro", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: #11537b;
  margin: 0;
  padding-bottom: 20px;
}

.floating-form-modal .close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  color: #666;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.floating-form-modal .close-btn:hover {
  background: #f5f5f5;
  color: #333;
  transform: rotate(90deg);
}

.floating-form-modal .close-btn svg {
  width: 20px;
  height: 20px;
}

/* Floating Form Styles */
.floating-form {
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.floating-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-form .form-group label {
  font-weight: 600;
  color: #11537b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-form .form-group input,
.floating-form .form-group select,
.floating-form .form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fafafa;
  transition: all 0.3s ease;
  color: #333;
}

.floating-form .form-group input:focus,
.floating-form .form-group select:focus,
.floating-form .form-group textarea:focus {
  outline: none;
  border-color: #2099d7;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(32, 153, 215, 0.1);
  transform: translateY(-2px);
}

.floating-form .form-group input::placeholder,
.floating-form .form-group textarea::placeholder {
  color: #999;
  opacity: 0.8;
}

.floating-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.floating-form .submit-btn {
  background: linear-gradient(135deg, #2099d7 0%, #48b3e8 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(32, 153, 215, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.floating-form .submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.floating-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(32, 153, 215, 0.4);
  background: linear-gradient(135deg, #1a7bb8 0%, #3a9bd9 100%);
}

.floating-form .submit-btn:hover::before {
  left: 100%;
}

.floating-form .submit-btn:active {
  transform: translateY(-1px);
}

/* Mobile Responsive Styles for Floating Elements */
@media (max-width: 768px) {
  .floating-quote-icon {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-quote-icon .icon-content {
    width: 60px;
    height: 60px;
  }
  
  .floating-quote-icon .icon-content dotlottie-wc {
    width: 40px !important;
    height: 40px !important;
  }
  
  .floating-quote-icon .icon-content span {
    font-size: 10px;
  }
  
  .floating-form-modal .modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .floating-form-modal .modal-header {
    padding: 20px 20px 0;
    margin-bottom: 20px;
  }
  
  .floating-form-modal .modal-header h2 {
    font-size: 20px;
    padding-bottom: 15px;
  }
  
  .floating-form {
    padding: 0 20px 20px;
    gap: 16px;
  }
  
  .floating-form .form-group input,
  .floating-form .form-group select,
  .floating-form .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .floating-form .submit-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .floating-form-modal .modal-content {
    width: 98%;
    margin: 10px;
    border-radius: 15px;
  }
  
  .floating-form-modal .modal-header {
    padding: 15px 15px 0;
  }
  
  .floating-form {
    padding: 0 15px 15px;
  }
}

/* About - Hero Section */
@font-face {
  font-family: 'Albra';
  src: url(https://static1.squarespace.com/static/618712634cc9d14bd80427f3/t/618726ad2ae7d330b43cb5f8/1636247213169/BumbumType+-+Albra+Light.otf);
  font-display: swap;
}
@font-face {
  font-family: 'Albra-Italic';
  src: url(https://static1.squarespace.com/static/618712634cc9d14bd80427f3/t/618726b6bf654a24c669edb5/1636247222114/BumbumType+-+Albra+Light+Italic.otf);
  font-display: swap;
}

.about-hero {
  padding: 6vmax 0;
  background: var(--siteBackgroundColor);
}
.about-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 7vw;
  padding-right: 7vw;
  box-sizing: content-box;
}
.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-hero__grid { grid-template-columns: 1fr 1fr; }
}

.about-hero__title {
  white-space: pre-wrap;
  margin: 1rem 0;
  color: var(--headingExtraLargeColor);
  font-family: 'Albra', var(--heading-font-font-family);
  font-size: var(--heading-1-size, 2.9rem) !important;
  line-height: 3.3rem !important;
}
@media screen and (min-width: 1296px) {
  .about-hero__title { font-size: calc(var(--heading-1-size-value) * 1rem); }
}
@media screen and (min-width: 768px), screen and (max-width: calc(1295px)) and (orientation: landscape) {
  .about-hero__title { font-size: calc((var(--heading-1-size-value) - 1) * 1.2vw + 1rem); }
}

.about-hero__subtitle {
  white-space: pre-wrap;
  margin: 1rem 0;
  color: var(--headingMediumColor);
  font-family: 'Albra-Italic', var(--heading-font-font-family);
  font-size: var(--heading-3-size, 1.9rem) !important;
  line-height: 2.5rem !important;
}
@media screen and (min-width: 1296px) {
  .about-hero__subtitle { font-size: calc(var(--heading-3-size-value) * 1rem); }
}
@media screen and (min-width: 768px), screen and (max-width: calc(1295px)) and (orientation: landscape) {
  .about-hero__subtitle { font-size: calc((var(--heading-3-size-value) - 1) * 1.2vw + 1rem); }
}

.about-hero__cta {
  display: inline-block;
  background-color: transparent !important;
  color: #000 !important;
  border: 1px solid var(--primaryButtonBackgroundColor, #2099d7) !important;
  border-radius: 5px !important;
  padding: .9em 3em !important;
  -webkit-font-smoothing: antialiased;
  transition: 0.1s opacity linear;
}
.about-hero__cta:hover { opacity: 0.8; }

.about-hero__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 2px solid var(--primaryButtonBackgroundColor, #2099d7);
}
.about-hero__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--image-block-poster-image-overlay-color, rgba(0,0,0,.5));
  opacity: .1;
  pointer-events: none;
  border-radius: 14px;
}

/* About - Guarantee Section */
.about-guarantee {
  background-color: #0d2c44;
  color: #ffffff;
}
.about-guarantee__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 7vw;
  text-align: center;
}
.about-guarantee__title {
  font-family: 'Albra-Italic','adobe-caslon-pro',serif;
  font-weight: 400;
  font-size: var(--heading-3-size, 1.9rem);
  margin: 0 0 1rem 0;
}
.about-guarantee__text {
  max-width: 900px;
  margin: 0.75rem auto 0;
  line-height: 1.8;
}
.about-guarantee__cta {
  display: inline-block;
  margin-top: 1.5rem;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  background: transparent;
  border-radius: 5px;
  padding: .9em 3em;
  text-decoration: none;
  transition: 0.1s opacity linear;
}
.about-guarantee__cta:hover { opacity: 0.8; }

/* About - Pets Section */
.about-pets {
  /* Full-bleed background section */
  position: relative;
  margin-top: 0; /* stick to previous section */
  background-image: url('../assets/serveces_card_2.png'); /* placeholder image; replace if you have a dedicated one */
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
}
.about-pets::before {
  /* subtle overlay if needed */
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.0);
}
.about-pets__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 7vw; /* generous vertical spacing like screenshot */
  text-align: center;
  color: var(--paragraphMediumColor);
}
.about-pets__title {
  font-family: 'Albra', var(--heading-font-font-family);
  font-weight: 400;
  font-size: var(--heading-2-size, 2.5rem);
  line-height: 1.4;
  color: var(--headingLargeColor);
  margin: 0 0 1rem;
}
.about-pets__text {
  margin: 0 auto;
  line-height: 1.8;
  font-size: var(--large-text-size, 1.3rem);
}

@media (max-width: 767px) {
  .about-pets__inner { padding: 4rem 6vw; }
  .about-pets__title { font-size: calc((var(--heading-2-size-value, 2.5) - 1) * 1.2vw + 1.4rem); }
  .about-pets__text { font-size: 1rem; }
}
