@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');


* { box-sizing: border-box; margin: 0; padding: 0; }
body 
{ 
  
  /* min-height: 1000px; */
  font-family: 'Geologica', sans-serif; color: #fff; line-height: 1.5; background: #ffffff; 
}

.container
{ 
  width: 90%; max-width: 1200px; margin: 0 auto; 
}

#header
{
  position:fixed;
  top:0;left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:40px 100px;
  z-index:1000;
  transition:padding .3s, background .3s, box-shadow .3s;
  background:transparent;
}

#header.sticky
{
  padding:5px 100px;
  background:#fff;
  box-shadow:0 1px 4px rgba(255, 0, 0, 0.08);
}

#header.sticky .logo,
#header.sticky .nav-list li a
{
  color:#000;
}
#header.sticky .submenu 
{
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
#header.sticky .submenu a 
{
  color: #000;
}


#header .logo
{
  font-weight:700;
  color:#fff;
  text-decoration:none;
  font-size:2em;
  letter-spacing:2px;
  transition:color .3s;
}


#header .nav-list
{
  position:static;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:0;
  margin:0;
  padding:0;
  list-style:none;
  visibility:visible;
  opacity:1;
  max-height:none;
  background:none;
}

#header .nav-list li
{
  position: relative;
  list-style:none;
  margin:0;
  padding:0;
}

#header .nav-list li a
{
  margin:0 15px;
  text-decoration:none;
  color:#fff;
  letter-spacing:2px;
  font-weight:300;
  transition:color .3s;
  display:inline-block;
  padding:.25rem 0;
}
#header .toggle
{
  display:none
}

#header .submenu 
{
  background: rgba(15, 14, 14, 0.1);
  box-shadow: none;
}

.submenu
{
  text-align: center;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: none;
  min-width: 12rem;
  z-index: 10;
}
.submenu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #002d3d;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}
.submenu li a:hover {
  background: #f0f0f0;
}

@media (hover: hover) 
{
  .has-submenu:hover > .submenu 
  {
    display: block;
  }
}

.has-submenu.open > .submenu {
  display: block;
}

.submenu-toggle .arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
  vertical-align: middle;
}
.has-submenu.open .submenu-toggle .arrow {
  transform: rotate(180deg);
}

#header.sticky .submenu-toggle .arrow svg polyline {
  color: #000;
  }
  #header:not(.sticky) .submenu-toggle .arrow svg polyline {
    color: #fff;
  }


/*======= VIDEO BANNER =======*/
.banner
{
  position: relative;
  width: 100%;
  min-height: 50vh;
  background: url(/images/9BB9DAE8-DDC8-4B1A-BE99-F72EB82EF728.JPEG);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner h2
{
  color: #fff;
  font-size: 40px;
  text-align: center;
}



/* --------- about --------- */

.about-us-start 
{
  background: #ffffff8f;
  padding: 5rem 0;
  color: #000000;
}

.about-us-start-grid
{
  max-width: 1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 2fr 500px;         
  grid-template-areas:
    "copy  card"
    "image card";                          
  gap: 1rem 3rem;
}
.about-us-start-copy   
{ 
  grid-area: copy; 
}
.about-us-start-image  
{ 
  grid-area: image; 
}
.about-us-start-pop
{ 
  grid-area: card; 
}

.about-us-start-copy h2 
{
  font-size: clamp(2.3rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.75rem;
}
.about-us-start-copy .accent 
{ 
  color: #22c0f3; 
}
.about-us-start-copy p 
{
  color: #000000;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.about-us-start-image
{
  position: relative;
}
.about-us-start-image img 
{
  width: 100%;
  border-radius: 0rem 0rem 0rem 3rem;
  display: block;
}
.about-us-start-pop
{
  background: #22bff349;
  color:#000000;
  border-radius: 0rem 0rem 0rem 0rem;
  padding:2.5rem 2rem;
  display:flex;
  flex-direction:column;
  gap:1.5rem;
  align-self:start;
}
.about-us-start-pop-img
{
  width: 100%;
  border-radius: 0rem;
  display: block;
}


/*photos*/

.gallery-section {
  padding: 4rem 0;
  background: #f6f8f7;
}

.gallery-grid {
  display: flex;
  gap: 3rem;
  max-width: 97%;
  margin: 0 auto;
}

.gallery-grid a {
  flex: 1;
  overflow: hidden;
  border-radius: 0.5rem;
  display: block;
  position: relative;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.service1-accordion 
{
  padding: 3rem 1rem;
}
.service1-accordion__grid 
{
  display: grid;
  max-width: 800px;
  margin: 0 auto;
  gap: 1.5rem;

  grid-template-columns: 1fr;
  grid-template-areas:
    "intro"
    "toggles"
    "panel1"
    "panel2"
    "panel3";
}




/* intro */
.service1-intro 
{
  text-align: center;
  color: #000;
  grid-area: intro;
}

.service1-intro p
{
  padding: 1rem;
  text-align: center;
  color: #000;
  grid-area: intro;
}

.service1-toggles 
{
  grid-area: toggles;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.toggle-btn 
{
  background: none;
  border: none;
  cursor: pointer;
  width: 48px; height: 48px;
  transition: transform .2s;
}
.toggle-btn:hover 
{
  transform: scale(1.1);
}
.toggle-btn img 
{
  width: 100%;
  display: block;
}

.service1-panel 
{
  display: none;           
  grid-column: 1 / -1;  
  text-align: center;
  background: #fff;
  color: #000;
  padding: 1rem 1.5rem;
  border-top: 1px solid #ddd;
}
.service1-panel h3 {
  margin-top: 0;
}
.service1-panel.active {
  display: block;    
}










/*=== FOOTER ===*/
.site-footer {
  background: #deebe4;
  color: #000000;
  font-size: 0. ninerem;
  line-height: 1.5;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 1rem;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-brand .footer-logo {
  margin-left: -76px;
  border-radius: 10px;
  width: 250px;
}
.footer-brand h4 {
  /* margin: 1rem 0 0.5rem; */
  font-size: 1.1rem;
}
.social-icons a {
  display: inline-block;
  margin-right: 0.75rem;
}
.social-icons img {
  width: 24px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #944c70;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.footer-contact .icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  fill: #000000;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-services li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #66dbff;
}

.footer-copyright
{
  border-top: 1px solid rgb(110, 83, 83);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer-copyright a {
  color: #ffd966;
  text-decoration: none;
}
.icon {
  width: 20px;
  height: auto;
}


/* === Fade-in animation === */
.fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.fly-in-left {
  opacity: 0;
  transform: translateX(-300px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fly-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 800px) 
{
  .implant‑accordion__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "toggles"
      "panel1"
      "panel2"
      "panel3";
  }
  .implant‑toggles {
    flex-direction: row;
    justify-content: space-around;
  }

  #primaryNav { 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, visibility .3s;
  }
  header.active #primaryNav {
    visibility: visible;
    opacity: 1;
  }
  .submenu-toggle::after {
    float: right;
    transition: transform .3s;
  }
  #header .submenu 
  {
    background: #22bff300;
    box-shadow: none;
  }
  .has-submenu.open .submenu-toggle::after {
    transform: rotate(180deg);
  }
  .has-submenu {
    width: 100%;
  }
  .submenu {
    position: static;
    display: none;       
    width: 100%;
    background: #615e5e;
    box-shadow: none;
    margin: 0; padding: 0;
  }
  .has-submenu.open > .submenu {
    display: block;
  }
  .submenu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    background-color: #22bff350;
    color: #fff;
    font-weight: 400;
  }
  .submenu li:first-child a {
    border-top: none;
  }
  #header,
  #header.sticky
  {
    padding:.75rem 1.25rem;
    background:#fff;
    box-shadow:0 1px 4px rgba(0,0,0,.1);
  }

  #header .logo
  {
    color:#000;
    font-size:1.75rem;
  }

  #header .toggle
  {
    display:block;
    position:relative;
    width:32px;
    height:22px;
    cursor:pointer;
    border:none;
    background:none;
    padding:0;
  }
  #header .toggle::before,
  #header .toggle::after,
  #header .toggle span
  {
    content:"";
    position:absolute;
    left:0;
    width:100%;
    height:2px;
    background:#000;
    transition:transform .3s, opacity .3s;
  }
  #header .toggle::before
  {
    top:0;
  }
  #header .toggle::after
  {
    bottom:0;
  }
  #header .toggle span
  {
    top:10px;
  } 

  #header.active .toggle::before
  {
    transform:translateY(10px) rotate(45deg);
  }
  #header.active .toggle::after
  {
    transform:translateY(-10px) rotate(-45deg);
  }
  #header.active .toggle span
  {
    opacity:0;
  }

  #header .nav-list
  {
    position:absolute;
    top:100%;left:0;
    width:100%;
    margin:0;
    padding:0;
    list-style:none;
    background:#fff;
    visibility:hidden;
    opacity:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease, opacity .25s ease, visibility 0s linear .25s;
    display:block;
    text-align:center;
  }

  #header.active .nav-list
  {
    visibility:visible;
    opacity:1;
    max-height:calc(100vh - var(--hdrH,60px));
    transition:max-height .35s ease, opacity .25s ease;
  }

  #header .nav-list li
  {
    margin:0;
    border-bottom:1px solid rgba(0,0,0,.08);
  }
  #header .nav-list li:last-child
  {
    border-bottom:none;
  }

  #header .nav-list li a{
    display:block;
    padding:1rem 0;
    margin:0;
    font-size:1.25rem;
    color:#000;
    letter-spacing:1px;
    font-weight:500;
  }
  #header.sticky .submenu-toggle .arrow svg polyline 
  {
  color: #000
  }
  #header:not(.sticky) .submenu-toggle .arrow svg polyline 
  {
    color: #000;
  }

  .banner
  {
    background-position: center;
  }
  .banner h2
  {
    font-size: 2rem;
    padding: 0 50px;
  }
  
  .footer-container 
  {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand .footer-logo
  {
    margin-left: 0px;
  }
  .footer-col {
    flex: 1 1 100%;
  }
  .footer-contact li,
  .footer-links li,
  .footer-services li {
    justify-content: center;
  }
  .about-us-start-grid 
  {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "image"
      "card";
    gap: 1.5rem;
  }

  .about-us-start-copy 
  {
    grid-area: copy;
    padding: 0 1rem;
  }
  .about-us-start-image 
  {
    grid-area: image;
    padding: 0 1rem;
  }
  .about-us-start-pop 
  {
    grid-area: card;
    padding: 1.5rem;
    margin: 0 1rem;
  }
  .about-us-start-image img
  {
    width: 100%;
    border-radius: 1rem;
  }
  .gallery-grid {
    flex-direction: column;
  }
  .gallery-grid a 
  {
    flex: none;
    width: 100%;
  }
  .service1-toggles 
  {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
