/* ===============================
   LMV Healthcare Solutions
   Premium One-Page Website Style
   Cream / Olive / Charcoal Theme
================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #f8f5f0;
  --cream-2: #efe8dd;
  --cream-3: #e6ddcf;
  --white: #ffffff;
  --charcoal: #161616;
  --charcoal-2: #242424;
  --text: #1f1f1f;
  --muted: #5f5f5f;
  --olive: #687154;
  --olive-dark: #4f563f;
  --olive-light: #a7b08a;
  --brown: #75624f;
  --border: rgba(30, 30, 30, 0.08);
  --glass: rgba(255, 255, 255, 0.55);
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 35px 90px rgba(0, 0, 0, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top right, #e9e0d3, var(--cream) 45%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1200px, 90%);
  margin: auto;
}

/* HEADER */

header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(248,245,240,.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.05);
}

.navbar{
  height:90px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}


.logo {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--charcoal);
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}
.menu-toggle{
    display:none;
}

nav ul {
  display: flex;
  gap: 34px;
  list-style: none;
}

nav a {
  font-size: 14px;
  font-weight: 650;
  color: var(--charcoal);
  transition: 0.3s ease;
}

nav a:hover {
  color: var(--olive);
}

.nav-btn,
.btn {
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  color: white;
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 750;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(104, 113, 84, 0.25);
  transition: 0.35s ease;
}

.nav-btn:hover,
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(104, 113, 84, 0.38);
}

.btn-outline {
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: 0.35s ease;
}

.btn-outline:hover {
  transform: translateY(-4px);
  background: white;
}

/* HERO */

.hero {
  padding: 105px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.label {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1,
.section h2,
.about-content h2,
.cta-box h2 {
  font-family: "Playfair Display", serif;
}

.hero h1 {
  font-size: 74px;
  line-height: 1.05;
  margin-bottom: 26px;
  color: var(--charcoal);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
}

/* SECTIONS */

.section {
  padding: 95px 0;
  scroll-margin-top: 130px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 55px;
}

.section h2 {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--charcoal);
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

/* SERVICES */

/* SERVICES */

#services{
  background:#23281f;
  position:relative;
}

#services .label{
  color:#c9b89c;
}

#services h2{
  color:#f8f5f0;
}

#services .section-head p{
  color:rgba(248,245,240,0.75);
}

.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.service-card{
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:30px;
  overflow:hidden;
  transition:all .4s ease;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.service-card:hover{
  transform:translateY(-10px);
  border-color:rgba(201,184,156,0.25);
  box-shadow:0 35px 80px rgba(0,0,0,0.35);
}

.service-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.service-content{
  padding:30px;
}

.service-card h3{
  color:#f8f5f0;
  font-size:24px;
  margin-bottom:14px;
}

.service-card p{
  color:rgba(248,245,240,0.75);
  line-height:1.8;
}

.service-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:20px;
  color:#c9b89c;
  font-weight:700;
  transition:.3s;
}

.service-link:hover{
  color:#ffffff;
}

.contact-page{
    padding:120px 0;
}

.contact-hero{
    max-width:800px;
    margin:0 auto 60px;
    text-align:center;
}

.contact-hero h1{
    font-family:"Playfair Display", serif;
    font-size:64px;
    line-height:1.1;
    margin-bottom:20px;
}

.contact-hero p{
    color:var(--muted);
    font-size:18px;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:40px;
    align-items:start;
}

.contact-details{
    padding:40px;
}

.contact-details h2{
    font-family:"Playfair Display", serif;
    font-size:42px;
    margin-bottom:20px;
}

.contact-details p{
    color:var(--muted);
    margin-bottom:30px;
}

.contact-item{
    margin-bottom:25px;
}

.contact-item strong{
    display:block;
    margin-bottom:6px;
    color:var(--olive);
}

.glass-form{
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.7);

    border-radius:32px;

    padding:40px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
}

.glass-form input,
.glass-form textarea{

    width:100%;

    border:none;

    background:rgba(255,255,255,.7);

    border-radius:18px;

    padding:18px;

    font-size:15px;

    margin-bottom:18px;

    outline:none;
}

.glass-form textarea{
    min-height:180px;
    resize:vertical;
}

.glass-form input:focus,
.glass-form textarea:focus{
    box-shadow:
    0 0 0 2px rgba(104,113,84,.25);
}

.glass-form button{
    width:100%;
}


@media(max-width:900px){

  .services{
    display:flex;
    overflow-x:auto;
    gap:20px;
    scroll-snap-type:x mandatory;
    padding-bottom:10px;
  }

  .services::-webkit-scrollbar{
    display:none;
  }

  .service-card{
    min-width:85%;
    scroll-snap-align:start;
  }

  .service-card img{
    height:220px;
  }
}


/* WHO WE SERVE */

.serve-wrap {
  background: var(--cream-2);
  border-radius: 36px;
  padding: 60px;
}

.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.industry {
  background: white;
  border-radius: 26px;
  padding: 42px;
  transition: 0.35s ease;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
}

.industry:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
}

.industry{
  overflow:hidden;
  padding:0;
}

.industry img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.industry-content{
  padding:30px;
}

.icon {
  font-size: 38px;
  margin-bottom: 18px;
}

.industry h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.industry p {
  color: var(--muted);
}




/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-img img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 22px;
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 34px;
}

.check {
  background: var(--olive-dark);
  color: #ffffff;
  border-radius: 18px;
  padding: 16px;
  font-weight: 750;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}



/* CONSULTANT */

.consultant{
  background:var(--cream);
}

.consultant-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}

.consultant-image img{
  width:100%;
  height:560px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:0 30px 80px rgba(0,0,0,.14);
}

.consultant-content h2{
  font-family:"Playfair Display", serif;
  font-size:48px;
  line-height:1.15;
  margin-bottom:24px;
  color:var(--charcoal);
}

.consultant-content p{
  color:var(--muted);
  margin-bottom:22px;
  font-size:17px;
}

.linkedin-link{
  display:inline-block;
  margin-top:10px;
  color:var(--olive-dark);
  font-weight:800;
}

/* RESOURCES */

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.resource-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.resource-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.resource-content {
  padding: 30px;
}

.resource-content span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--olive);
}

.resource-content h3 {
  font-size: 23px;
  line-height: 1.25;
  margin: 14px 0;
}

.resource-content p {
  color: var(--muted);
  margin-bottom: 20px;
}

.read-more {
  color: var(--olive-dark);
  font-weight: 800;
}





/* CONTACT */

.contact-section {
  background: var(--cream-2);
  border-radius: 36px;
  padding: 65px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 24px;
}

.contact-detail {
  margin-bottom: 14px;
  font-weight: 700;
}

.contact-form {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 17px;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  background: white;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}




/* CTA */

.cta {
  padding: 100px 0;
  background: var(--cream);
}

.cta-box {
  background: #23281f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 36px;
  padding: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(201,184,156,0.12);
  border-radius: 50%;
  filter: blur(90px);
  top: -150px;
  right: -120px;
}

.cta-box > * {
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  line-height: 1.1;
  color: #f8f5f0;
  margin-bottom: 18px;
  max-width: 700px;
}

.cta-box p {
  color: rgba(248,245,240,0.75);
  max-width: 600px;
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 900px) {

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }

  .cta-box h2 {
    font-size: 38px;
  }

  .cta-box p {
    font-size: 16px;
  }
}




/* FOOTER */

footer {
  background: #23281f;
  color: white;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 45px;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #aaa;
  max-width: 320px;
}

.footer-title {
  font-weight: 800;
  margin-bottom: 20px;
  color: #f3e7d5;
}

footer a {
  display: block;
  color: #aaa;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

footer a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #888;
}

/* ARTICLE PAGES */

.article-hero {
  padding: 90px 0 50px;
}

.article-wrapper {
  max-width: 900px;
  margin: auto;
}

.article-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 58px;
  line-height: 1.12;
  margin-bottom: 20px;
}

.article-meta {
  color: var(--olive);
  font-weight: 800;
  margin-bottom: 25px;
}

.article-content {
  background: white;
  border-radius: 32px;
  padding: 55px;
  box-shadow: var(--shadow);
  margin-bottom: 80px;
}

.article-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin: 35px 0 15px;
}

.article-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.article-content ul {
  padding-left: 22px;
  color: var(--muted);
  margin-bottom: 22px;
}




/* MOBILE */


@media(max-width:900px){

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:48px;
        height:48px;
        border:none;
        border-radius:14px;
        background:rgba(255,255,255,.6);
        backdrop-filter:blur(12px);
        font-size:24px;
        cursor:pointer;
    }

    .nav-btn{
        display:none;
    }

    nav{
        position:absolute;
        top:90px;
        left:20px;
        right:20px;

        background:rgba(255,255,255,.95);
        backdrop-filter:blur(20px);

        border-radius:24px;

        padding:25px;

        display:none;
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        gap:18px;
    }

    nav a{
        font-size:16px;
    }

    .hero-grid,
    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-hero h1{
        font-size:42px;
    }

    .glass-form{
        padding:25px;
    }

  .hero h1 {
    font-size: 46px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-image img {
    height: 430px;
    border-radius: 26px;
  }

  .section {
    padding: 70px 0;
  }

  .section h2,
  .about-content h2,
  .contact-info h2 {
    font-size: 38px;
  }

  .section-head {
    margin-bottom: 35px;
  }

  .services,
  .industries,
  .resources-grid {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
  }

  .services::-webkit-scrollbar,
  .industries::-webkit-scrollbar,
  .resources-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .industry,
  .resource-card {
    min-width: 82%;
    scroll-snap-align: start;
  }

  .serve-wrap,
  .contact-section {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .about-img img {
    height: 420px;
    border-radius: 26px;
  }

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

  .cta-box {
    display: block;
    padding: 42px 28px;
    border-radius: 30px;
  }

  .cta-box h2 {
    font-size: 34px;
  }

  .cta-box .btn {
    margin-top: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .article-hero h1 {
    font-size: 40px;
  }

  .article-content {
    padding: 30px 22px;
    border-radius: 24px;
  }

   .consultant-grid{
  grid-template-columns:1fr;
  gap:40px;
}

.consultant-image img{
  height:420px;
}

   .consultant-image{
    margin-bottom: 48px;
}
   
.consultant-content h2{
  font-size:36px;
}
}

@media (max-width: 480px) {
  .container {
    width: min(92%, 100%);
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-outline {
    text-align: center;
  }

  .hero-image img,
  .about-img img {
    height: 360px;
  }

  .service-card,
  .industry,
  .resource-card {
    min-width: 88%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .contact-form {
    padding: 24px;
  }
}
