/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2b2b2b;
  background-color: #faf9f7;
  line-height: 1.6;
}

/* =========================
   COLOR SYSTEM
========================= */
:root {
  --primary: #0f3d3e;   /* dark teal */
  --accent: #c6a96b;    /* soft gold */
  --accent-dark: #a3874f;
  --secondary: #f7f6f3; /* warm light background */
  --text-dark: #1c2b2b;
  --text-light: #6b7c7c;
  --white: #ffffff;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--text-dark);
}

h1 {
  font-size: 42px;
  letter-spacing: -0.5px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  position: relative;
}

h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #c6a96b, #a3874f);
  display: block;
  margin-top: 12px;
}

p {
  font-size: 15px;
  color: var(--text-light);
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   LOGO BRANDING
========================= */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
}

.brand-title {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
}



/* =========================
   NAVBAR (CLEAN VERSION)
========================= */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 10px 0;
}
/* NAV INNER */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* LOGO */
.brand-name {
  color: #e5d3a3;
}

.brand-title {
  color: rgba(229,211,163,0.6);
}

/* PUSH NAV TO RIGHT */
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
/* SPACING */
.nav-links a {
  margin-left: 35px;
  text-decoration: none;
  font-size: 14px;
  color: #e5d3a3;
  position: relative;
  transition: 0.3s;
     opacity: 0.85;
}

.nav-btn {
  padding: 8px 20px;
  border: 1px solid #c6a96b;
  border-radius: 25px;
  color: #c6a96b !important;
}


.nav-btn:hover {
  background: #c6a96b;
  color: #0f3d3e !important;
}

/* HOVER LINE */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #c6a96b;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}
   .nav-links a:hover {
  color: #c6a96b;
  opacity: 1;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  height: 90vh;
  background: linear-gradient(
    135deg,
    #071f20,
    #0f3d3e
  );
  display: flex;
  align-items: center;
  justify-content: center; /* ADD THIS */
  text-align: center;      /* ADD THIS */
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(15, 61, 62, 0.85),
    rgba(15, 61, 62, 0.75)
  );
  top: 0;
  left: 0;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 40px
  );
  top: 0;
  left: 0;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  transform: translateY(-20px);
}

.hero h1 {
  color: #c6a96b;
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 25px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   INTRO VIDEO SECTION
========================= */

.intro-video-section{
  background:#faf9f7;
  padding:100px 0;
}

.intro-video-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* VIDEO */

.intro-video-wrapper{
  width:100%;
}

.intro-video{
  width:100%;
  border-radius:18px;
  display:block;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* CONTENT */

.intro-video-content h2{
  margin-bottom:25px;
  max-width:500px;
}

.intro-tag{
  display:inline-block;
  margin-bottom:18px;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#c6a96b;
  font-weight:500;
}

.intro-highlight{
  font-size:17px;
  line-height:1.8;
  color:#1c2b2b;
  margin-bottom:20px;
  font-weight:500;
}

.intro-video-content p{
  margin-bottom:18px;
  max-width:540px;
}

/* MOBILE */

@media(max-width:768px){

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

  .intro-video-content{
    text-align:center;
  }

}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #c6a96b;
  color: #c6a96b;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s ease;
  margin-top: 10px;
}
.btn:hover {
  background: #c6a96b;
  color: #0f3d3e;
}
.btn-outline {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 24px;
  border: 1px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* =========================
   SECTION
========================= */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: var(--secondary);
}

.section-subtitle {
  max-width: 600px;
  margin-top: 10px;
  color: var(--text-light);
}

.doctor-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.doctor-image img {
  width: 100%;
  border-radius: 12px;
}

/* TEXT */
.doctor-content h2 {
  margin-bottom: 20px;
}

.doctor-intro {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 15px;
}

/* =========================
   SERVICES
========================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
}

.service-card h3 {
  margin-top: 15px;
}

.service-card:hover {
  transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.img-eyelid {
  object-position: center 35%;
  height: 180px;
}

.img-fat {
  object-position: center;
}

#services {
  text-align: center;
  padding: 100px 0;
}

#services .section-subtitle {
  max-width: 700px;
  margin: 15px auto;
}

.service-btn {
  display: inline-block;
  margin-top: 15px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #c6a96b;
  text-decoration: none;
  border-bottom: 1px solid #c6a96b;
  padding-bottom: 3px;
  transition: 0.3s;
}

.service-btn:hover {
  opacity: 0.7;
}

#services .btn-outline {
  display: inline-block;
  margin-top: 25px;
}
#services .container {
  text-align: center;
}

#services h2::after {
  margin-left: auto;
  margin-right: auto;
}

#services p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* HOVER EFFECT (premium feel) */
.service-link:hover .service-card {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.fat-image {
  text-align: center;
  margin: 40px 0 50px;
}

.fat-image img {
  width: 100%;
  max-width: 700px; /* match grid width */
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.fat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.fat-item {
  background: white;
  padding: 20px; /* slightly tighter */
  border-radius: 12px;
  border: 1px solid #eee;
}
/* =========================
   IMAGE CARD (Before/After)
========================= */
.image-card img {
  width: 100%;
  border-radius: 12px;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonial {
  background: white;
  padding: 25px;
  border-radius: 12px;
  font-style: italic;
}

.cta-section {
  background: linear-gradient(135deg, #071f20, #0f3d3e);
  padding: 100px 0;
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 700px;
  margin: auto;
}

.cta-section h2 {
  color: #c6a96b;
}

.cta-section h2::after {
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  margin: 20px 0 30px;
}

/* BUTTON GROUP */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {

  /* HERO TEXT */
  .hero h1 {
    font-size: 32px;
  }

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

  /* NAVBAR */
  .nav-inner {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .nav-links a {
    margin-left: 0;
  }

  /* SERVICES → STACK */
  .services {
    grid-template-columns: 1fr;
  }

  /* ABOUT SECTION → STACK */
  .doctor-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* IMAGE SIZE */
  .service-card img {
    height: 180px;
  }

  /* SECTION SPACING */
  .section {
    padding: 60px 0;
  }

}

@media (max-width: 480px) {

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

  .hero-content {
    padding: 0 10px;
  }

  h2 {
    font-size: 24px;
  }

  .btn, .btn-outline {
    font-size: 13px;
    padding: 10px 20px;
  }

}
/* =========================
   PREMIUM SOCIAL SECTION
========================= */

.social-section{
  background:#f8f6f2;
  padding:110px 0;
  position:relative;
  overflow:hidden;
}

/* subtle background effect */

.social-section::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:350px;
  height:350px;
  background:rgba(198,169,107,0.05);
  border-radius:50%;
}

.social-header{
  text-align:center;
  max-width:760px;
  margin:0 auto 70px;
}

.social-header h2{
  margin-bottom:18px;
}

.social-header h2::after{
  margin-left:auto;
  margin-right:auto;
}

.social-header p{
  font-size:16px;
  line-height:1.9;
}

/* GRID */

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

/* CARD */

.social-card{
  background:white;
  border-radius:22px;
  padding:45px 30px;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  transition:0.4s ease;
  border:1px solid rgba(0,0,0,0.04);
  box-shadow:0 10px 30px rgba(0,0,0,0.03);

  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.social-card p{
  max-width:260px;
  margin:0 auto;
}

.social-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,0.08);
}

/* gold top accent */

.social-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(
    90deg,
    #c6a96b,
    #a3874f
  );
}

/* ICON */

.social-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:linear-gradient(
    135deg,
    #0f3d3e,
    #174d4e
  );
  color:#c6a96b;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:600;
  margin-bottom:28px;
  box-shadow:0 10px 25px rgba(15,61,62,0.18);
}

/* TEXT */

.social-card h3{
  font-size:24px;
  margin-bottom:15px;
  color:#0f3d3e;
}

.social-card p{
  font-size:15px;
  line-height:1.9;
  color:#6b7c7c;
}

/* subtle arrow */

.social-card::after{
  content:"↗";
  position:absolute;
  top:25px;
  right:25px;
  font-size:18px;
  color:#c6a96b;
  opacity:0.6;
}

/* MOBILE */

@media(max-width:1000px){

  .social-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:700px){

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

  .social-card{
    padding:35px 25px;
  }

}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 40px 0;
  text-align: center;
  font-size: 13px;
  background: #f4f2ef;
}
