/**
* Template Name: Medilab
* Template URL: https://bootstrapmade.com/medilab-free-medical-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Sora", sans-serif;
  --nav-font: "Sora", sans-serif;
}
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2c4964; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2F6C6D; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #2c4964;  /* The default color of the main navmenu links */
  --nav-hover-color: #2F6C6D; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #2c4964; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2F6C6D; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 79px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.footer {
  color: #f2f2f2;
  background-color: #4E8283;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 20px;
}

.footer .footer-about .logo img {
  max-height: 98px;
  width: auto;
}

.footer .footer-about p {
  font-size: 14px;
  color: #e6f0f0;
  line-height: 1.7;
  max-width: 280px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 15px;
  color: #ffffff;
  margin-right: 8px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background-color: #ffffff;
  color: #4E8283;
  border-color: #ffffff;
}

.footer h4 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.footer .footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 6px;
  filter: grayscale(20%) contrast(1.05);
}

.footer .copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .copyright p {
  margin-bottom: 0;
  color: #e6f0f0;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.footer .copyright p a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.footer .copyright p a:hover {
  text-decoration: underline;
}

@media (max-width: 575px) {
  .footer .footer-about p {
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



:root {
  --accent-color: #2F6C6D;
  --contrast-color: #ffffff;
  --btn-yellow: #c9b458;
}

.hero-wrapper {
  padding: 20px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Lighter overlay on right so background image breathes, darker on left for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--accent-color), black 30%) 0%,
    color-mix(in srgb, var(--accent-color), black 10%) 40%,
    color-mix(in srgb, var(--accent-color), transparent 55%) 75%,
    color-mix(in srgb, var(--accent-color), transparent 70%) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px 80px 60px;
}

/* ===== Trust strip ===== */
.trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.trust-badge {
  color: var(--btn-yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(201, 180, 88, 0.5);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.hero-content h1 {
  color: var(--contrast-color);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 34px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-solid {
  background: var(--btn-yellow);
  color: #1a1a1a;
}

.btn-solid:hover {
  background: color-mix(in srgb, var(--btn-yellow), black 15%);
}

.btn-outline {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.btn-outline:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

/* ===== LARGE TABLET / SMALL LAPTOP (≤1200px) ===== */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 46px;
  }
}

/* ===== TABLET (≤992px) ===== */
@media (max-width: 992px) {
  .hero {
    min-height: 75vh;
  }

  .hero-content {
    padding: 0 40px 60px 40px;
  }

  .hero-content h1 {
    font-size: 40px;
    max-width: 100%;
  }

  .hero-content p {
    max-width: 90%;
  }
}

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px) {
  .hero-wrapper {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    border-radius: 18px;
    padding: 60px 0 40px 0;
    align-items: flex-start;
  }

  .hero-overlay {
    background: color-mix(in srgb, var(--accent-color), black 20%);
  }

  .hero-content {
    padding: 0 24px;
    text-align: center;
  }

  .trust-strip {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 32px;
    max-width: 100%;
  }

  .hero-content p {
    font-size: 16px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .hero-content {
    padding: 0 18px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.25;
  }

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

  .trust-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ===== VERY SMALL MOBILE (≤360px) ===== */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 22px;
  }
}
/* ===== SERVICES STRIP ===== */
.services-strip {
  width: 100%;
  padding: 0 20px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.strip-inner {
  max-width: 1300px;
  margin: 0 auto;
  background: #f5f6f8;
  border-radius: 8px;
  display: flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.strip-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 40px 30px;
  border-right: 1px solid #e0e2e6;
  transition: background 0.3s ease;
}

.strip-item:last-child {
  border-right: none;
}

.strip-item:hover {
  background: #ffffff;
}

.strip-text h3 {
  color: var(--heading-color);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.strip-text p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

.strip-arrow {
  color: var(--accent-color);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 0.3s ease;
}

.strip-item:hover .strip-arrow {
  transform: translateX(6px);
}

/* ===== TABLET (≤992px) — 2 columns, 2 rows ===== */
@media (max-width: 992px) {
  .services-strip {
    margin-top: 0;
    padding: 40px 20px 0 20px;
  }

  .strip-inner {
    flex-wrap: wrap;
  }

  .strip-item {
    flex: 1 1 50%;
    border-right: 1px solid #e0e2e6;
    border-bottom: 1px solid #e0e2e6;
  }

  .strip-item:nth-child(2n) {
    border-right: none;
  }

  .strip-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* ===== MOBILE (≤576px) — 1 column, stacked ===== */
@media (max-width: 576px) {
  .services-strip {
    padding: 30px 12px 0 12px;
  }

  .strip-inner {
    border-radius: 12px;
  }

  .strip-item {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #e0e2e6;
    padding: 28px 22px;
  }

  .strip-item:last-child {
    border-bottom: none;
  }

  .strip-text h3 {
    font-size: 17px;
  }

  .strip-text p {
    font-size: 13.5px;
  }
}
/* ===== ABOUT SECTION ===== */
.about {
  padding: 90px 20px;
  background: #ffffff;
}

.about-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 70px;
}


/*--------------------------------------------------------------
# Membership Section
--------------------------------------------------------------*/
.membership-section {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), black 15%) 100%
  );
  padding: 58px 20px;
}

.membership-wrapper {
  max-width: 1300px;
  margin: 0 auto;
}

.membership-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  padding: 42px 48px;
  display: grid;
  grid-template-columns: 1fr 0.55fr 1fr;
  align-items: center;
  gap: 34px;
}

/* LEFT: Text */
.membership-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 13px;
}

.membership-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #14213d;
  line-height: 1.25;
  margin-bottom: 11px;
}

.membership-text p {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* CENTER: Circle with logo fully visible inside */
.membership-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.membership-image-circle {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
}

.membership-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* RIGHT: Icon boxes */
.membership-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.membership-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 19px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
}

.membership-icon {
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.membership-icon i {
  font-size: 16px;
  color: color-mix(in srgb, var(--accent-color), black 20%);
}

.membership-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

/* ===== TABLET (≤992px) ===== */
@media (max-width: 992px) {
  .membership-card {
    grid-template-columns: 1fr;
    padding: 32px 26px;
    text-align: center;
  }

  .membership-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .membership-image {
    height: auto;
  }

  .membership-image-circle {
    width: 165px;
    height: 165px;
    padding: 16px;
    margin: 0 auto;
  }

  .membership-item {
    justify-content: center;
  }
}

/* ===== MOBILE (≤576px) ===== */
@media (max-width: 576px) {
  .membership-section {
    padding: 32px 12px;
  }

  .membership-card {
    padding: 24px 18px;
    border-radius: 16px;
    gap: 18px;
  }

  .membership-text h2 {
    font-size: 22px;
  }

  .membership-image-circle {
    width: 135px;
    height: 135px;
    padding: 14px;
  }
}




/* ===== IMAGE SIDE ===== */
.about-image {
  position: relative;
  flex: 0 0 42%;
  max-width: 42%;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  display: block;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.about-badge {
  position: absolute;
  left: 15px;
  bottom: -137px;
  background: var(--accent-color);
  border-radius: 10px;
  padding: 22px 26px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  min-width: 220px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
}

.badge-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #c9b458;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CONTENT SIDE ===== */
.about-content {
  flex: 1 1 54%;
  padding-top: 10px;
}

.about-label {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

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

.about-content p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-btn {
  display: inline-block;
  background: var(--accent-color);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 36px;
  border-radius: 4px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== TABLET (≤992px) ===== */
@media (max-width: 992px) {
  .about-inner {
    flex-direction: column;
    gap: 50px;
  }

  .about-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-image img {
    height: 400px;
  }

  .about-content {
    flex: 1 1 100%;
    width: 100%;
    padding-top: 40px;
  }

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

  .about-badge {
    left: 20px;
    bottom: -25px;
    padding: 18px 22px;
    min-width: 200px;
  }
}

/* ===== MOBILE (≤576px) ===== */
@media (max-width: 576px) {
  .about {
    padding: 60px 16px;
  }

  .about-inner {
    gap: 60px;
  }

  .about-image img {
    height: 300px;
  }

  .about-badge {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
    border-radius: 12px;
  }

  .about-content {
    padding-top: 20px;
  }

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

  .about-content p {
    font-size: 15px;
  }

  .about-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
/* ===== STATS SECTION ===== */
.stats {
  background-color: var(--background-color);
  padding: 80px 20px 60px 20px;
}

.stats-container {
  max-width: 1300px;
  margin: 0 auto;
}

.stats-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stats-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
}

.stats-icon {
  color: #ffffff;
  background-color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats-icon svg {
  width: 26px;
  height: 26px;
}

.stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 0;
}

.stats-item .stats-count {
  font-size: 32px;
  display: block;
  margin: 10px 0;
  font-weight: 700;
  color: var(--heading-color);
}

.stats-item p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: var(--text-gray);
}

/* ===== TABLET (≤992px) — 2 columns ===== */
@media (max-width: 992px) {
  .stats-row {
    gap: 40px 20px;
  }

  .stats-col {
    flex: 1 1 calc(50% - 20px);
    min-width: 160px;
  }
}

/* ===== MOBILE (≤576px) — 1 column ===== */
@media (max-width: 576px) {
  .stats {
    padding: 60px 16px 40px 16px;
  }

  .stats-row {
    gap: 40px;
  }

  .stats-col {
    flex: 1 1 100%;
  }

  .stats-item {
    padding: 26px 20px 20px 20px;
  }

  .stats-item .stats-count {
    font-size: 28px;
  }
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 80px 20px;
  background: var(--surface-color);
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== HEADER ROW ===== */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.services-label {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.services-header-left h2 {
  color: var(--heading-color);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  max-width: 480px;
}

.services-header-right {
  flex: 1 1 380px;
  max-width: 480px;
}

.services-header-right p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.services-btn-outline {
  display: inline-block;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.services-btn-outline:hover {
  background: var(--accent-color);
  color: #ffffff;
}

/* ===== GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* Full-width image at top of card */
.service-image {
  width: 100%;
  height: 200px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 28px 26px 30px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-gray);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 26px;
  flex-grow: 1;
}

.service-readmore {
  display: block;
  width: 100%;
  background: var(--accent-color);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-readmore:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
}

/* Highlighted card - ONLY last column of 2nd row (6th card) */
.service-card--highlight {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.service-card--highlight h3,
.service-card--highlight p {
  color: #ffffff;
}

.service-card--highlight p {
  color: rgba(255, 255, 255, 0.85);
}

.service-card--highlight .service-readmore {
  background: #ffffff;
  color: var(--accent-color);
}

.service-card--highlight .service-readmore:hover {
  background: color-mix(in srgb, #ffffff, black 8%);
}

/* ===== TABLET (≤992px) — 2 columns ===== */
@media (max-width: 992px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-header-left h2 {
    font-size: 32px;
    max-width: 100%;
  }

  .services-header-right {
    max-width: 100%;
  }

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

/* ===== MOBILE (≤600px) — 1 column ===== */
@media (max-width: 600px) {
  .services {
    padding: 55px 16px;
  }

  .services-header-left h2 {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-image {
    height: 220px;
  }

  .service-body {
    padding: 24px 22px 26px 22px;
  }

  .services-btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* ===== SECTION ===== */
.departments {
  padding: 80px 20px;
  background: var(--background-color);
}

.departments-container {
  max-width: 1000px;
  margin: 0 auto;
}

.departments-title {
  text-align: center;
  margin-bottom: 50px;
}

.departments-label {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.departments-title h2 {
  color: var(--heading-color);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
}

.departments-title p {
  color: var(--text-gray);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== GRID ===== */
.departments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.dept-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 40px 34px;
  text-align: center;
  transition: all 0.3s ease;
}

.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}

.dept-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px auto;
}

.dept-icon img {
  width: 30px;
  height: 30px;
}

.dept-card h3 {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.dept-card p {
  color: var(--text-gray);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.dept-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}

.dept-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

/* ===== TABLET (≤768px) ===== */
@media (max-width: 768px) {
  .departments-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .departments-title h2 {
    font-size: 28px;
  }
}

/* ===== MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .departments {
    padding: 55px 16px;
  }

  .dept-card {
    padding: 32px 24px;
  }

  .departments-title h2 {
    font-size: 24px;
  }
}
/*--------------------------------------------------------------
# Faq Section (two-column layout)
--------------------------------------------------------------*/
.faq {
  padding: 80px 0;
}

/* LEFT COLUMN */
.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.faq-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-color);
  display: inline-block;
}

.faq-heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #14213d;
  margin-bottom: 16px;
}

.faq-heading-accent {
  color: var(--accent-color);
}

.faq-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  max-width: 420px;
  margin-bottom: 34px;
}

/* Overlapping images */
.faq-images {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 300px;
  margin-bottom: 34px;
}

.faq-img {
  position: absolute;
  object-fit: cover;
  border-radius: 50% / 42%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 6px solid var(--surface-color);
}

.faq-img-back {
  width: 62%;
  height: 88%;
  top: 0;
  left: 0;
  z-index: 1;
}

.faq-img-front {
  width: 55%;
  height: 78%;
  bottom: 0;
  right: 0;
  z-index: 2;
}

/* CTA */
.faq-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.faq-cta p {
  font-size: 16px;
  font-weight: 700;
  color: #14213d;
  line-height: 1.4;
  margin: 0;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--btn-yellow);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.faq-cta-btn i {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  padding: 5px;
  font-size: 13px;
}

.faq-cta-btn:hover {
  background: color-mix(in srgb, var(--btn-yellow), black 15%);
  transform: translateY(-2px);
}

/* RIGHT COLUMN: Accordion */
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 22px 60px 22px 24px;
  margin-bottom: 16px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
}

.faq .faq-container .faq-question-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  color: #14213d;
  cursor: pointer;
  transition: 0.3s;
}

.faq .faq-container .faq-item:hover .faq-question-btn {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 14.5px;
  line-height: 1.7;
  color: #666;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent-color);
  transition: 0.3s;
  pointer-events: none;
}

/* Active state */
.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-question-btn,
.faq .faq-container .faq-active:hover .faq-question-btn {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-content p {
  color: rgba(255, 255, 255, 0.85);
}

.faq .faq-container .faq-active .faq-toggle {
  background: var(--contrast-color);
  border-color: var(--contrast-color);
  color: var(--accent-color);
  transform: rotate(45deg);
}

/* ===== TABLET (≤992px) ===== */
@media (max-width: 992px) {
  .faq-heading {
    font-size: 32px;
  }

  .faq-images {
    max-width: 300px;
    height: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px) {
  .faq {
    padding: 50px 0;
  }

  .col-lg-5,
  .col-lg-7 {
    text-align: center;
  }

  .faq-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .faq-images {
    margin-left: auto;
    margin-right: auto;
  }

  .faq-cta {
    justify-content: center;
  }

  .faq .faq-container .faq-item {
    padding: 18px 54px 18px 18px;
  }

  .faq .faq-container .faq-question-btn,
  .faq .faq-container .faq-item h3 {
    font-size: 15.5px;
  }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .faq-heading {
    font-size: 26px;
  }

  .faq-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
}

.testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--surface-color);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 36px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* abot us */

/* ===== About Us Banner Section ===== */
.about-banner{
  position: relative;
  background: linear-gradient(135deg, #4E8283 0%, #3E6C6D 100%);
  color: #ffffff;
  padding: 90px 24px 70px;
  text-align: center;
  overflow: hidden;
}

/* subtle decorative shapes - purely visual, aria-hidden */
.about-banner .shape{
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  background: var(--btn-yellow);
}
.shape.one{ width:220px; height:220px; top:-60px; left:-60px; }
.shape.two{ width:160px; height:160px; bottom:-50px; right:5%; }
.shape.three{ width:90px; height:90px; top:20%; right:15%; opacity:0.08; }

.about-banner .inner{
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-banner .eyebrow{
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--btn-yellow);
  font-weight: 600;
  margin-bottom: 18px;
}

.about-banner h1{
  font-family: var(--heading-font);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.about-banner p.lead{
  font-family: var(--default-font);
  font-size: clamp(15px, 2.2vw, 18px);
  color: #e6f0f0;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Breadcrumb ===== */
.about-banner nav.breadcrumb{
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 20px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.about-banner nav.breadcrumb ol{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.about-banner nav.breadcrumb li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.about-banner nav.breadcrumb a{
  color: #e6f0f0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-banner nav.breadcrumb a:hover,
.about-banner nav.breadcrumb a:focus-visible{
  color: var(--btn-yellow);
  outline: none;
}

.about-banner nav.breadcrumb li[aria-current="page"]{
  color: var(--btn-yellow);
  font-weight: 600;
}

.about-banner nav.breadcrumb .sep{
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 600px){
  .about-banner{ padding: 60px 18px 50px; }
  .about-banner nav.breadcrumb{ padding: 8px 14px; }
  .about-banner .shape.two{ display: none; }
}

/*--------------------------------------------------------------
# Doctor Profile Details Section
--------------------------------------------------------------*/
.doctor-details{
  padding: 80px 20px;
  background: var(--surface-color);
}

.doctor-details-container{
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.detail-block{
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  padding: 36px 34px;
}

.details-label{
  color: var(--accent-color);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.detail-block h2{
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 22px;
}

/* Pill grid - Areas of Expertise / Clinical Interests */
.pill-grid{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.pill-grid li{
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.pill-grid--accent li{
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
}

/* Two / three column layout wrappers */
.detail-grid-2col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.detail-grid-3col{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Checklist - Memberships / Languages / Registration / Academic */
.check-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li{
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray, #555);
  border-bottom: 1px dashed color-mix(in srgb, var(--accent-color), transparent 85%);
}

.check-list li:last-child{
  border-bottom: none;
}

.check-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--btn-yellow);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Timeline list - Experience */
.timeline-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-list li{
  border-left: 3px solid var(--accent-color);
  padding: 4px 0 20px 20px;
  margin-bottom: 6px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-gray, #555);
}

.timeline-list li:last-child{
  padding-bottom: 0;
}

.timeline-list li strong{
  display: block;
  font-size: 16px;
  color: var(--heading-color);
  margin-bottom: 4px;
}

/* Practice / Contact cards */
.practice-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.practice-card{
  font-style: normal;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
  padding: 24px 26px;
  border-left: 4px solid var(--accent-color);
}

.practice-card h3{
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.practice-card p{
  font-size: 14.5px;
  color: var(--text-gray, #555);
  line-height: 1.6;
  margin: 0;
}

/* ===== TABLET (≤992px) ===== */
@media (max-width: 992px){
  .doctor-details{ padding: 60px 18px; }
  .detail-block{ padding: 28px 24px; }
  .detail-grid-2col,
  .detail-grid-3col{
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px){
  .detail-grid-2col,
  .detail-grid-3col,
  .practice-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px){
  .doctor-details{ padding: 45px 14px; }
  .doctor-details-container{ gap: 32px; }
  .detail-block{ padding: 24px 18px; }
  .detail-block h2{ font-size: 20px; }
  .pill-grid li{ font-size: 13px; padding: 8px 14px; }
}

/* endo urology */

/*--------------------------------------------------------------
# Endo-Urology Service Section
--------------------------------------------------------------*/
.eu-section{
  background: var(--background-color);
}

.eu-label{
  color: var(--accent-color);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

/* ===== Intro: Photo + Content ===== */
.eu-intro{
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

.eu-intro-image{
  position: relative;
  flex: 0 0 42%;
  max-width: 42%;
}

.eu-intro-image img{
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.eu-badge{
  position: absolute;
  left: 20px;
  bottom: -20px;
  background: var(--accent-color);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  gap: 8px;
}

.eu-badge-check{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--btn-yellow);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eu-intro-content{
  flex: 1 1 54%;
  padding-top: 6px;
}

.eu-intro-content h1{
  font-size: 38px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.eu-intro-content p{
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-gray, #555);
  margin-bottom: 18px;
}

.eu-btn{
  display: inline-block;
  background: var(--accent-color);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 36px;
  border-radius: 4px;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.eu-btn:hover{
  background: color-mix(in srgb, var(--accent-color), black 15%);
}

/* ===== Procedures Grid ===== */
.eu-procedures{
  background: var(--surface-color);
  padding: 80px 20px;
}

.eu-procedures-header{
  max-width: 640px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.eu-procedures-header h2{
  font-size: 32px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 14px;
}

.eu-procedures-header p{
  font-size: 15px;
  color: var(--text-gray, #555);
  line-height: 1.6;
}

.eu-grid{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.eu-card{
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 10px;
  padding: 34px 28px;
  transition: all 0.35s ease;
}

.eu-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.eu-icon{
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.eu-icon svg{
  width: 26px;
  height: 26px;
}

.eu-card--highlight .eu-icon{
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.eu-card h3{
  font-size: 19px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.eu-card p{
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-gray, #555);
  margin: 0;
}

.eu-card--highlight{
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.eu-card--highlight h3,
.eu-card--highlight p{
  color: #ffffff;
}

.eu-card--highlight p{
  color: rgba(255, 255, 255, 0.85);
}

.eu-card--highlight .eu-icon{
  background: rgba(255, 255, 255, 0.15);
}

/* ===== Benefits ===== */
.eu-benefits{
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  gap: 70px;
}

.eu-benefits-content{
  flex: 1 1 50%;
}

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

.eu-check-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.eu-check-list li{
  position: relative;
  padding: 12px 0 12px 34px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray, #555);
  border-bottom: 1px dashed color-mix(in srgb, var(--accent-color), transparent 85%);
}

.eu-check-list li:last-child{
  border-bottom: none;
}

.eu-check-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--btn-yellow);
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eu-benefits-image{
  flex: 1 1 50%;
}

.eu-benefits-image img{
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  display: block;
}

/* ===== CTA ===== */
.eu-cta{
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 15%) 100%);
  padding: 60px 20px;
}

.eu-cta-inner{
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.eu-cta-inner h2{
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.eu-cta-inner p{
  color: rgba(255, 255, 255, 0.9);
  font-size: 15.5px;
  margin-bottom: 28px;
}

.eu-cta-btn{
  display: inline-block;
  background: var(--btn-yellow);
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 38px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.eu-cta-btn:hover{
  background: color-mix(in srgb, var(--btn-yellow), black 15%);
  transform: translateY(-2px);
}

/* ===== TABLET (≤992px) ===== */
@media (max-width: 992px){
  .eu-intro,
  .eu-benefits{
    flex-direction: column;
    gap: 50px;
  }

  .eu-intro-image,
  .eu-benefits-content,
  .eu-benefits-image{
    flex: 1 1 100%;
    max-width: 100%;
  }

  .eu-intro-image img{ height: 380px; }

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

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px){
  .eu-intro,
  .eu-procedures,
  .eu-benefits{
    padding: 55px 16px;
  }

  .eu-intro-content h1{ font-size: 30px; }
  .eu-procedures-header h2,
  .eu-benefits-content h2{ font-size: 26px; }

  .eu-badge{
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: 16px;
    justify-content: center;
  }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px){
  .eu-grid{
    grid-template-columns: 1fr;
  }

  .eu-btn,
  .eu-cta-btn{
    width: 100%;
    text-align: center;
  }

  .eu-cta-inner h2{ font-size: 22px; }
}


/* contact us */

/*--------------------------------------------------------------
# Contact Us Page — Info + Map Layout
--------------------------------------------------------------*/
.contact-page-section {
  padding: 80px 20px;
  background: var(--background-color);
}

.contact-page-container {
  max-width: 1300px;
  margin: 0 auto;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.08);
}

/* ===== LEFT: Info Panel ===== */
.contact-info-panel {
  background: var(--accent-color);
  color: #ffffff;
  padding: 54px 46px;
}

.contact-info-label {
  color: var(--btn-yellow);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.contact-info-panel h2 {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.contact-info-panel > p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 360px;
  margin-bottom: 34px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--btn-yellow);
  color: var(--btn-yellow);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 6px;
}

.contact-info-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

.contact-info-item a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info-item a:hover {
  color: var(--btn-yellow);
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
}

.contact-social a:hover {
  background: var(--btn-yellow);
  border-color: var(--btn-yellow);
  color: #1a1a1a;
}

/* ===== RIGHT: Map Panel ===== */
.contact-map-panel {
  position: relative;
  min-height: 480px;
  background: var(--surface-color);
}

.contact-map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
  filter: grayscale(10%) contrast(1.03);
}

.contact-map-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 8px;
  padding: 16px 22px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.12);
}

.contact-map-tag strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.contact-map-tag span {
  font-size: 13px;
  color: var(--text-gray, #555);
}

/* ===== TABLET (≤992px) ===== */
@media (max-width: 992px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-panel,
  .contact-map-panel iframe {
    min-height: 340px;
  }

  .contact-info-panel {
    padding: 44px 30px;
  }
}

/* ===== MOBILE (≤576px) ===== */
@media (max-width: 576px) {
  .contact-page-section {
    padding: 55px 16px;
  }

  .contact-info-panel {
    padding: 36px 22px;
  }

  .contact-map-tag {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}



    /* ============ GALLERY ============ */
    .gallery {
        padding: 60px 20px;
    }

    .gallery-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .gallery-header {
        text-align: center;
        margin-bottom: 36px;
    }

    .gallery-header .details-label {
        display: inline-block;
        margin-bottom: 8px;
    }

    .gallery-header h2 {
        margin: 0;
    }

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

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        aspect-ratio: 1 / 1;
        background: #f2f2f2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.06);
    }

    /* Tablet: 3 columns */
    @media (max-width: 992px) {
        .gallery-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }
    }

    /* Small tablet / large phone: 2 columns */
    @media (max-width: 640px) {
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .gallery {
            padding: 40px 16px;
        }
    }

    /* Small phone: 1 column */
    @media (max-width: 380px) {
        .gallery-grid {
            grid-template-columns: repeat(1, 1fr);
        }
    }


    /* ============ SERVICES / PACKAGES (page-specific) ============ */
    .lab-services {
        padding: 60px 20px;
    }

    .lab-services-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .lab-services-header {
        text-align: center;
        margin-bottom: 36px;
    }

    .lab-services-header h2 {
        margin: 0;
    }

    .lab-category-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .lab-category-card {
        border: 1px solid #e6e6e6;
        border-radius: 14px;
        padding: 24px;
        background: #fff;
    }

    .lab-category-card h3 {
        margin: 0 0 12px;
    }

    .lab-category-card ul {
        margin: 0;
        padding-left: 18px;
    }

    .lab-category-card li {
        margin-bottom: 6px;
    }

    .lab-package-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
    }

    .lab-package-card {
        border-radius: 14px;
        padding: 28px;
        background: #fff;
        border: 1px solid #e6e6e6;
        text-align: center;
    }

    .lab-package-card .price {
        font-size: 2rem;
        font-weight: 700;
        margin: 10px 0;
    }

    .lab-highlight-strip {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        margin-top: 30px;
    }

    .lab-highlight-pill {
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid #e6e6e6;
        font-size: 0.9rem;
    }

    /* Responsive: tablet */
    @media (max-width: 992px) {
        .lab-category-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Responsive: mobile */
    @media (max-width: 640px) {
        .lab-services {
            padding: 40px 16px;
        }

        .lab-category-grid,
        .lab-package-grid {
            grid-template-columns: 1fr;
        }
    }