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

:root {
  --primary: #0056b3;
  --primary-dark: #0056b3;
  --text: #4b4b4b;
  --heading: #0056b3;
  --light-bg: #f7f8ff;
  --white: #ffffff;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  --container: 1440px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(96%, var(--container));
  margin: 0 auto;
}

/* Header */
.header {
  background: #fff;
  padding: 18px 0;
  position: relative;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  width: 95px;
  height: auto;
  object-fit: contain;
}

.navbar {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #4e4158;
  letter-spacing: 0.3px;
  transition: 0.3s ease;
}

.nav-links > li > a:hover {
  color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 185px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.dropdown-menu li a {
  display: block;
  padding: 11px 16px;
  font-size: 14px;
  color: #555;
}

.dropdown-menu li a:hover {
  background: #f3eff8;
  color: var(--primary);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: #f3eff8;
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 4px;
}

/* Hero */
.about-hero {
  padding: 12px 0 42px;
}

.about-hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 305px;
  box-shadow: var(--shadow);
}

.about-hero-card img {
  width: 100%;
  height: 305px;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 50, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay h1 {
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
}

/* About Content */
.about-main-section {
  padding: 18px 0 60px;
}

.about-main-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
  max-width: 1020px;
  margin: 0 auto;
}

.about-gallery-wrap {
  position: relative;
}

.dot-pattern {
  position: absolute;
  top: -22px;
  left: -68px;
  width: 145px;
  height: 145px;
  background-image: radial-gradient(#8e8e8e 2.2px, transparent 2.2px);
  background-size: 18px 18px;
  opacity: 0.75;
}

.about-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 105px;
  gap: 4px;
  overflow: hidden;
}

.gallery-large {
  grid-column: 1 / -1;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text-content h2 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 18px;
}

.about-text-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 16px;
}

.about-highlight {
  font-weight: 700;
  color: #4d4d4d;
}

/* CTA */
.about-cta-section {
  padding: 20px 0 70px;
}

.about-cta-box {
  background: var(--light-bg);
  border-radius: 20px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 36px;
  max-width: 980px;
  margin: 0 auto;
}

.about-cta-spacer {
  flex: 1;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-phone-btn {
  min-height: 54px;
  padding: 0 22px;
  border: 2px solid #6b5677;
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-phone-btn:hover {
  transform: translateY(-2px);
}

.about-contact-btn {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease;
}

.about-contact-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Mobile dropdown active */
.nav-links .dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .about-hero-overlay h1 {
    font-size: 56px;
  }

  .about-main-grid {
    max-width: 100%;
  }

  .dot-pattern {
    left: -30px;
  }
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .social-icons {
    display: none;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  }

  .navbar.active {
    max-height: 700px;
    padding: 15px 20px 20px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 8px 10px;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    visibility: visible;
    max-height: 300px;
  }

  .dropdown:hover .dropdown-menu {
    visibility: hidden;
  }

  .about-hero-card,
  .about-hero-card img {
    min-height: 255px;
    height: 255px;
  }

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

  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dot-pattern {
    top: -14px;
    left: -10px;
    width: 120px;
    height: 120px;
  }

  .about-cta-box {
    min-height: auto;
    padding: 24px;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
  }

  .about-cta-spacer {
    display: none;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 14px 0;
  }

  .logo img {
    width: 78px;
  }

  .about-hero {
    padding: 8px 0 30px;
  }

  .about-hero-card,
  .about-hero-card img {
    min-height: 220px;
    height: 220px;
    border-radius: 18px;
  }

  .about-hero-overlay h1 {
    font-size: 38px;
  }

  .about-main-section {
    padding: 8px 0 45px;
  }

  .about-gallery {
    grid-template-rows: 210px 95px;
  }

  .about-text-content h2 {
    font-size: 21px;
  }

  .about-text-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .about-cta-section {
    padding: 10px 0 50px;
  }

  .about-cta-box {
    border-radius: 16px;
    padding: 18px;
  }

  .about-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .about-phone-btn,
  .about-contact-btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    font-size: 14px;
  }
}

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

  .about-hero-card,
  .about-hero-card img {
    height: 185px;
    min-height: 185px;
  }

  .about-hero-overlay h1 {
    font-size: 30px;
  }

  .dot-pattern {
    width: 95px;
    height: 95px;
    background-size: 15px 15px;
    left: -4px;
  }

  .about-gallery {
    grid-template-rows: 180px 82px;
  }

  .about-text-content h2 {
    font-size: 18px;
  }

  .about-text-content p {
    font-size: 13.5px;
  }
}/* =========================
   PHILOSOPHY SECTION
========================= */
.philosophy-section {
  padding: 70px 0 50px;
  background: #fff;
}

.section-heading.center {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading.center h3 {
  font-size: 28px;
  color: #41224f;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-heading.center h2 {
  font-size: 40px;
  color: #0056b3;
  font-weight: 800;
  line-height: 1.2;
}

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

.philosophy-card {
  background: #fff;
  border-radius: 8px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  min-height: 255px;
}

.philosophy-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.mission-icon {
  color: #2f80ed;
}

.vision-icon {
  color: #27ae60;
}

.values-icon {
  color: #eb5757;
}

.philosophy-card h4 {
  font-size: 18px;
  color: #41224f;
  font-weight: 800;
  margin-bottom: 14px;
}

.philosophy-card p {
  font-size: 14px;
  line-height: 1.85;
  color: #666;
  max-width: 320px;
  margin: 0 auto;
}

.values-list {
  max-width: 260px;
  margin: 0 auto;
  text-align: left;
}

.values-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}

.values-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #27ae60;
  font-size: 10px;
}

/* =========================
   STATS SECTION
========================= */
.stats-section {
  padding: 30px 0 70px;
  background: #fff;
}

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

.stat-card {
  background: #f7f8ff;
  border-radius: 20px;
  padding: 34px 20px;
  text-align: center;
  min-height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.stat-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #0056b3;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.stat-card h3 {
  font-size: 42px;
  line-height: 1;
  color: #333;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 15px;
  color: #666;
  font-weight: 600;
}

/* =========================
   FOOTER CTA
========================= */
.footer-cta-section {
  position: relative;
  z-index: 3;
  margin-bottom: -34px;
}

.footer-cta-box {
  background: #f7f8ff;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.footer-cta-box h2 {
  font-size: 30px;
  color: #0056b3;
  font-weight: 800;
  line-height: 1.2;
}

.footer-cta-btn {
  min-height: 50px;
  padding: 0 28px;
  background: #0056b3;
  color: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.footer-cta-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* =========================
   FOOTER
========================= */
.main-footer {
  position: relative;
  background: url("assets/footer-bg.jpg") center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.7fr 1fr;
  gap: 38px;
  padding: 105px 0 40px;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 105px;
  height: auto;
}

.footer-about p,
.footer-appointment p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}

.footer-about p {
  margin-bottom: 20px;
  max-width: 290px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  background: #0056b3;
  color: #fff;
  border-radius: 6px;
  display: grid;
  place-items: center;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
}

.footer-contact ul,
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact li i {
  margin-top: 4px;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links ul li a {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.footer-links ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-appointment p {
  margin-bottom: 22px;
}

.appointment-btn {
  min-height: 48px;
  padding: 0 22px;
  background: #0056b3;
  color: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.appointment-btn:hover {
  background: #0056b3;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.15);
}

.footer-bottom-inner {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom-inner p,
.footer-bottom-links a,
.footer-bottom-links span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .section-heading.center h2 {
    font-size: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .philosophy-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-card,
  .stat-card {
    min-height: auto;
  }

  .footer-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 90px 0 36px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .philosophy-section {
    padding: 55px 0 35px;
  }

  .section-heading.center {
    margin-bottom: 28px;
  }

  .section-heading.center h3 {
    font-size: 24px;
  }

  .section-heading.center h2 {
    font-size: 28px;
  }

  .philosophy-card {
    padding: 26px 20px;
  }

  .stats-section {
    padding: 20px 0 50px;
  }

  .stat-card {
    border-radius: 16px;
    padding: 28px 18px;
  }

  .stat-icon {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .stat-card h3 {
    font-size: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 80px 0 30px;
  }

  .footer-cta-box {
    border-radius: 18px;
  }

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

  .footer-cta-btn,
  .appointment-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-heading.center h3 {
    font-size: 21px;
  }

  .section-heading.center h2 {
    font-size: 24px;
  }

  .philosophy-card h4 {
    font-size: 17px;
  }

  .philosophy-card p,
  .values-list li,
  .stat-card p {
    font-size: 13px;
  }

  .footer-cta-box {
    padding: 18px 16px;
  }

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

  .footer-bottom-links {
    gap: 8px;
  }
}