/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f5faff;
  overflow-x: hidden;
}

/* header and mobile manue start  */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #003366;

}

.logo img {
  height: 65px;
  margin-right: -70px;
  margin-top: -15px;
}

.desktop-nav {
  display: flex;
}

.desktop-nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: #00b894;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.signup.desktop-signup {
  background-color: #00b894;
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.signup.desktop-signup:hover {
  background-color: #019875;
}

.hamburger-menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  padding: 5px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 200;
  transition: left 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  left: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.phone-number {
  font-weight: bold;
  color: #003366;
  font-size: 16px;
}

.close-menu {
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.mobile-menu nav a,
.menu-item-with-dropdown a {
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  border-bottom: 1px solid #f5f5f5;
  transition: background-color 0.2s ease;
}

.mobile-menu nav a:hover,
.menu-item-with-dropdown a:hover {
  background-color: #f0f0f0;
}

.mobile-menu nav a.active {
  color: #00b894;
  font-weight: bold;
}

.menu-item-with-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
}

.menu-item-with-dropdown a {
  flex-grow: 1;
  border-bottom: none;
}

.dropdown-arrow {
  padding: 15px 20px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.mobile-signup-btn {
  background-color: #00b894;
  color: white !important;
  padding: 15px 20px !important;
  border-radius: 4px;
  margin: 20px;
  text-align: center;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.mobile-signup-btn:hover {
  background-color: #019875;
}

@media (max-width: 1024px) {
  .desktop-nav,
  .signup.desktop-signup {
    display: none;
  }

  .hamburger-menu-icon {
    display: block;
  }
   .paras{
    margin-left: -10px;
    margin-top: -2px;
    
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
 
}

/* header and mobile manue end  */


/* hero and serach and property card section stared */


/* HERO SECTION */
.hero {
  background: url('/images/backgund_image%204.jpg') no-repeat center center/cover;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: white;
  animation: fadeInHero 1.5s ease-in-out;
  text-align: center;
}

@keyframes fadeInHero {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: slideInText 1.2s ease-out;
}

@keyframes slideInText {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}


/* SEARCH BOX */
.search-box-wrapper{
  position:relative; top:-20px; z-index:5;
  display:flex; justify-content:center; padding:0 15px;
  animation:fadeInSearch 2.5s ease;
}
@keyframes fadeInSearch{0%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}

/* Use GRID: 4 filters + button */
.search-box{
  background:#fff;
  display:grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr)) auto; /* 4 filters + button */
  gap:12px;
  padding:20px;
  border-radius:10px;
  box-shadow:0 10px 40px rgba(0,0,0,.15);
  max-width:1000px; width:100%;
  align-items:center;
}

/* remove the flex rule that forced full width */
.search-box select,
.search-btn{
  /* no flex here */
  padding:12px; font-size:15px; border-radius:6px;
}

.search-box select{
  width:100%;
  border:1px solid #ddd; background:#f9f9f9;
}

.search-btn{
  padding:12px 22px;
  background:#002244; color:#fff; border:none;
  transition:background .3s ease; /* keep button tight */
}
.search-btn:hover{ background:#00b894; }

/* Responsive: 2 columns on tablets */
@media (max-width: 992px){
  .search-box{
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
  .search-btn{
    grid-column: 1 / -1; /* button goes full-width below filters */
  }
}

/* Responsive: 1 column on phones */
@media (max-width: 560px){
  .search-box{
    grid-template-columns: 1fr;
  }
}


/* hero and serach  */






/* new animites section */

.animites-section {
  padding: 50px 0;
  /* background-color: #f1fcf8; */
  width: 100%;
  margin-top: 50px;
}

.animites-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #002B5B;
  margin-bottom: 40px;
}

/* Matches the card layout padding/gap */
.animites-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 2.5vw; /* same left/right space as your card layout */
  box-sizing: border-box;
  width: 100%;
}

.animites-box {
  /* background-color: #ffffff; */
  border: 1px dashed #c6eee5;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: background 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 190px;
}

.animites-box img {
  width: 75px;
  height: 75px;
  margin-bottom: 15px;
  filter: brightness(0.2) saturate(0);
}

.animites-box span {
  font-weight: bold;
  color: #002B5B;
  font-size: 15px;
}



/* Responsive grid for smaller screens */
@media (max-width: 992px) {
  .animites-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .animites-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}



/* <!-- about us for home page  --> */

.aboutus-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 50px;
}

.aboutus-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  background: #f6f6f6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.aboutus-wrapper.reverse {
  flex-direction: row-reverse;
}

.aboutus-image {
  flex: 1 1 50%;
}

.aboutus-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover;
  display: block; */
}

.aboutus-content {
  flex: 1 1 50%;
  padding: 40px 30px;
  background-color: #f6f6f6;
}

.aboutus-content h2 {
  color: #002244;
  font-size: 28px;
  margin-bottom: 20px;
}

.aboutus-content p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.aboutus-btn {
  display: inline-block;
  background-color: #002244;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 15px;
}

.aboutus-btn:hover {
  background-color: #00b894;
}

@media (max-width: 768px) {
  .aboutus-wrapper,
  .aboutus-wrapper.reverse {
    flex-direction: column;
  }

  .aboutus-content {
    padding: 30px 20px;
  }
}



/* contact us  */

/* Main Contact Section */
.contactus-box {
  background-color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 50px;
}

/* Wrapper Flex Layout */
.contactus-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Left Column with Image */
.contactus-left {
  flex: 1 1 50%;
  padding: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contactus-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-right: 2px solid #ccc;
}

/* Right Column with Form */
.contactus-right {
  flex: 1 1 50%;
  background-color: #f1f1f1;
  padding: 30px 40px;
}

.contactus-right h3 {
  text-align: center;
  color: #002244;
  margin-bottom: 20px;
  font-size: 22px;
}

/* Form Styling */
.contactus-right form {
  display: flex;
  flex-direction: column;
}

.contactus-right input,
.contactus-right textarea {
  margin-bottom: 15px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  font-size: 15px;
  border-radius: 4px;
  outline: none;
}

.contactus-right textarea {
  resize: vertical;
}

/* Submit Button */
.contactus-right button {
  background-color: #002244;
  color: white;
  border: none;
  padding: 12px;
  font-size: 15px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contactus-right button:hover {
  background-color: #00b894;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contactus-wrapper {
    flex-direction: column;
  }

  .contactus-left,
  .contactus-right {
    flex: 1 1 100%;
  }

  .contactus-image {
    height: 300px;
    object-fit: cover;
  }
}


/* footer */

.footer-enhanced {
  background-color: #002244;
  color: #e0e0e0;
  padding: 70px 30px 40px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 230px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
  border-bottom: 2px solid #00cfff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
  font-size: 15px;
}

.footer-column ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-column.brand h2 {
  color: #00cfff;
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-column.brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
}

.footer-copy {
  margin-top: 20px;
  font-size: 13px;
  color: #888;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #00cfff;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 30px;
  }
}


/* review section  */

 .review_card-section {
    background-color: white;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
  }

  .review_card-title {
    font-size: 32px;
    color: #002244;
    font-weight: bold;
    margin-bottom: 40px;
  }

  .review_card-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
  }

  .review_card-slider {
    overflow: hidden;            /* keep the viewport clean */
    width: 90%;
    max-width: 1000px;
  }

  .review_card-track {
    display: flex;
    will-change: transform;
    transition: transform 0.5s ease;  /* smooth slide */
  }

  .review_card-item {
    flex: 0 0 50%;               /* 2 cards on desktop */
    box-sizing: border-box;
    padding: 30px;
    margin: 10px;                /* we account this in JS */
    background: #ffffff;
    border: 1px dashed #b6e9db;
    border-radius: 8px;
    text-align: left;
    min-height: 200px;
  }

  .review_card-item p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .review_card-item strong {
    font-weight: bold;
    color: #002244;
  }

  .review_card-nav {
    background-color: #00b894;
    color: white;
    font-size: 20px;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    display: grid;
    place-items: center;
  }

  .review_card-nav:hover {
    background-color: #019872;
  }

  /* Responsive: Show only 1 card */
  @media (max-width: 768px) {
    .review_card-item {
      flex: 0 0 100%;
    }
  }


/* property tour section start  */

.property-tour-section {
      background: #ffffff;
      padding: 60px 20px;
      text-align: center;
    }

    .property-tour-section h2 {
      font-size: 2.75rem;
      font-weight: 700;
      margin-bottom: 50px;
      color: #111827;
      position: relative;
      display: inline-block;
    }

    .property-tour-section h2::after {
      content: "";
      position: absolute;
      width: 60%;
      height: 4px;
      background: #10b981;
      left: 50%;
      transform: translateX(-50%);
      bottom: -10px;
      border-radius: 2px;
    }

    .property-tour-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .property-video-card {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
    }

    .property-video-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    }

    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 ratio */
      height: 0;
      overflow: hidden;
      background: #000;
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-info {
      padding: 16px 20px;
      text-align: left;
    }

    .video-info h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: #1f2937;
    }

    .video-info p {
      color: #6b7280;
      font-size: 0.95rem;
    }

    @media (max-width: 768px) {
      .property-video-card {
        border-radius: 12px;
      }

      .video-info {
        padding: 14px 16px;
      }

      .video-info h3 {
        font-size: 1rem;
      }

      .video-info p {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .property-tour-section {
        padding: 40px 20px;
      }

      .property-tour-section h2 {
        font-size: 1.75rem;
        margin-bottom: 30px;
      }

      .video-wrapper {
        padding-bottom: 60%;
      }

      .video-info {
        padding: 12px 14px;
      }

      .video-info h3 {
        font-size: 0.95rem;
      }

      .video-info p {
        font-size: 0.85rem;
      }
    }

    /* property tour section end  */

    /* contact us special page start  */

     h2.contact_info-title {
      text-align: center;
      font-size: 36px;
      font-weight: bold;
      color: #0e1726;
      margin: 60px 20px 20px;
      position: relative;
    }

    h2.contact_info-title::after {
      content: "";
      width: 80px;
      height: 4px;
      background-color: #000000;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -10px;
      border-radius: 10px;
    }

    .contact_info-cards {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .contact_info-card {
      flex: 1 1 300px;
      display: flex;
      align-items: center;
      background-color: #ffffff;
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      min-height: 100px;
    }

    .contact_info-card i {
      font-size: 24px;
      color: #000000;
      margin-right: 15px;
     
    }

    .contact_info-card p {
      margin: 0;
      font-size: 16px;
      color: #333;
      line-height: 1.6;
    }

    .contact_info-box {
      padding: 60px 20px;
      background-color: #ffffff;
    }

    .contact_info-wrapper {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      background: #f8f8f8;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    }

    .contact_info-left,
    .contact_info-right {
      flex: 1 1 50%;
    }

    .contact_info-left {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;
    }

    .contact_info-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .contact_info-right {
      padding: 40px 50px;
      background-color: #ffffff;
    }

    .contact_info-right h3 {
      text-align: center;
      color: #002244;
      margin-bottom: 25px;
      font-size: 26px;
      font-weight: 600;
    }

    .contact_info-right form {
      display: flex;
      flex-direction: column;
    }

    .contact_info-right input,
    .contact_info-right textarea {
      margin-bottom: 18px;
      padding: 14px 16px;
      border: 1px solid #ccc;
      font-size: 16px;
      border-radius: 6px;
      outline: none;
      background: #fff;
    }

    .contact_info-right textarea {
      resize: vertical;
    }

    .contact_info-right button {
      background-color: #000000;
      color: white;
      border: none;
      padding: 14px;
      font-size: 16px;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .contact_info-right button:hover {
      background-color: #333;
    }

    .contact_info-map {
      text-align: center;
      padding: 40px 20px;
      background-color: #ffffff;
    }

    .contact_info-map iframe {
      width: 100%;
      max-width: 1200px;
      height: 450px;
      border: none;
      border-radius: 10px;
    }

    @media (max-width: 991px) {
      .contact_info-wrapper {
        flex-direction: column;
      }
    }

    @media (max-width: 576px) {
      h2.contact_info-title {
        font-size: 28px;
      }

      .contact_info-right {
        padding: 10px 10px;
      }

      .contact_info-cards {
        flex-direction: column;
      }
    }


    @media (max-width: 480px) {
      h2.contact_info-title {
        font-size: 28px;
      }

      .contact_info-right {
        padding: 10px 10px;
      }

      .contact_info-cards {
        flex-direction: column;
      }
    }

    /* conatct end  */

   
  /* details page start  */
.container{ max-width:1300px; margin:0 auto; padding:20px; }

  /* ===== Gallery (SECOND IMAGE DESIGN) ===== */
  .gallery{
    display:grid; grid-template-columns: 2fr 1fr; gap:12px; margin-bottom:18px;
  }
  .main-wrap{ border-radius:16px; overflow:hidden; background:#e9eef4; }
  .main-img{ width:100%; height:520px; object-fit:cover; display:block; }

  .side{ display:grid; grid-template-rows: 1fr 1fr 1fr; gap:12px; }
  .tile{ position:relative; border-radius:16px; overflow:hidden; background:#e9eef4; }
  .tile img{ width:100%; height:100%; object-fit:cover; display:block; }
  .tile.t1{ height:168px; }
  .tile.t2{ height:168px; }
  .tile.t3{ height:168px; }

  /* Overlay CTA on bottom tile */
  .see-all{
    position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
    color:#fff; font-weight:700; text-decoration:none; cursor:pointer;
    background: linear-gradient(to bottom, rgba(0,0,0,.00), rgba(0,0,0,.45));
  }
  .see-all span{
    padding:10px 14px; background: rgba(0,0,0,.55); border-radius:10px; font-size:15px;
  }

  /* ===== Lightbox ===== */
  .modal{ display:none; position:fixed; inset:0; background:rgba(0,0,0,.9); z-index:2000; overflow:auto; padding:40px 20px; }
  .modal-inner{ max-width:1100px; margin:0 auto; position:relative; }
  .modal-close{
    position:absolute; top:-10px; right:-10px; width:42px; height:42px;
    border:none; border-radius:50%; background:#fff; color:#111; font-size:22px; cursor:pointer;
    box-shadow:0 4px 14px rgba(0,0,0,.3);
  }
  .modal-grid{ display:grid; grid-template-columns:repeat(auto-fill, minmax(260px,1fr)); gap:14px; }
  .modal-grid img{ width:100%; height:230px; object-fit:cover; border-radius:12px; background:#e9eef4; }

  /* ===== Details Section (top-notch look) ===== */
  .details{
    background:#fff; border-radius:16px; padding:26px 28px; box-shadow:0 10px 30px rgba(0,0,0,.07);
  }
  .details-header{
    display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; margin-bottom:16px;
    gap:10px;
  }
  .details-title{ margin:0; font-size:26px; font-weight:800; color:#111; }
  .details-badge{
    padding:8px 12px; border-radius:999px; background:#eef5ff; color:#0a60ff; font-weight:700; font-size:13px;
  }

  .grid{
    display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap:18px;
  }
  .card{
    background:#f9fafc; border-radius:12px; padding:16px 18px; box-shadow:0 2px 6px rgba(0,0,0,.05);
    transition: all .25s ease;
  }
  .card:hover{ background:#fff; box-shadow:0 8px 22px rgba(0,0,0,.08); }
  .label{ display:block; font-size:12px; text-transform:uppercase; color:#6f7682; margin-bottom:6px; font-weight:700; letter-spacing:.5px; }
  .value{ font-size:15px; font-weight:700; color:#111; }
  .muted{ color:#9aa3af; }

  @media (max-width:1024px){
    .main-img{ height:430px; }
  }
  @media (max-width:900px){
    .gallery{ grid-template-columns:1fr; }
    .tile.t1,.tile.t2,.tile.t3{ height:200px; }
  }

  /* CTA button */
.details-cta{
  display:inline-block;
  padding:12px 24px;
  border-radius:10px;
  background:#0a60ff;
  color:#fff;
  font-weight:700;
  font-size:16px;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(10,96,255,.12);
  transition:transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.details-cta:hover{ box-shadow:0 8px 22px rgba(10,96,255,.18); }
.details-cta:active{ transform:translateY(1px) scale(.998); }
.details-cta.disabled{ opacity:.5; pointer-events:none; }


  /* end  */


