* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --bg: #0f0f0f;
    --text: #fff;
    --muted: #9ca3af;
    --accent: #ff7a1a; /* Your requested orange color */
    --card: #1a1a1a;
    --border: rgba(255, 255, 255, 0.1);
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    padding: 1.5rem 6%;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}












.logo {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
}
.logo-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}


.header-socials {
    margin-left: auto;
    display: flex;
    gap: 18px;
}

.header-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 14px;
    transition: 0.3s;
    background: #ff7a1a;
}

.header-socials a:hover {
    color: #000;
    border-color: var(--accent);
    transform: translateY(-2px);
}










/* Hero Section */
.hero {
    padding: 6rem 6% 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero h1 {
    font-family: "Lora", serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent);
    color: #000;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #ff8b2d;
    transform: translateY(-2px);
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-content-grid p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted);
}










/* About */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  margin-top:32px
}

.about-column h3{
  font-family:'Lora',serif;
  font-size:21px;
  font-weight:600;
  margin-bottom:24px
}

.about-column p{
  font-size:15px;
  line-height:27px;
  color:var(--muted);
  margin-bottom:24px
}

.about-column ul{list-style:none}

.about-column li{
  font-size:15px;
  line-height:27px;
  color:var(--muted);
  margin-bottom:16px;
  padding-left:24px;
  position:relative
}


.about-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}






/* KOL Section */
.kol-section {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 6%;
}
.kol-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
}
.kol-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}
.kol-title {
    font-family: "Lora", serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.kol-description {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 600px;
}
/* Brand Logos */
.brand-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.brand-logo {
    width: 140px;
    height: 70px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


/* Clinical Focus Sections */
.section {
    padding: 5rem 6%;
    max-width: 1400px;
    margin: 0 auto;
}
.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}
.section-title {
    font-family: "Lora", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 2rem;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.treatment-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: 0.3s;
}
.treatment-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

/* Updated Label Color */
.treatment-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent); /* #ff7a1a */
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.treatment-title {
    font-family: "Lora", serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
}
.treatment-description {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
label {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
input,
textarea {
    width: 100%;
    padding: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}
input:focus {
    outline: none;
    border-color: var(--accent);
}
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-container,
    .contact-grid,
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    .hero-image-wrapper {
        order: -1;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    .hero-content-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        text-align: center;
        padding-top: 3rem;
    }
    .hero-content-grid {
        text-align: left;
    }
    
.logo img {
        width: 70%;
        height: 70%;
}

    .hero-content, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;


}
