/* ============================================
   Eagle Eye Clinic — Client revisions
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");

:root {
  --brand-gold: #af915d;
  --brand-gold-light: #d8b36a;
  --brand-gold-soft: #e8c283;
  --brand-dark: #1a1a1a;
  --brand-dark-soft: #2b2b2b;
  --text-main: #222222;
  --text-muted: #6a6c72;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select,
.navbar,
.nav-link,
h1, h2, h3, h4, h5, h6,
p, a, span, li, label {
  font-family: "Alexandria", sans-serif !important;
}

/* ---------- Header social icons (gold) ---------- */
.soail-contact-header ul {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.soail-contact-header ul li a,
.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(175, 145, 93, 0.55);
  color: var(--brand-gold) !important;
  padding: 0 !important;
  transition: 0.25s ease;
}

.soail-contact-header ul li a:hover,
.header-social-link:hover {
  background: var(--brand-gold);
  color: #fff !important;
  border-color: var(--brand-gold);
}

.soail-contact-header ul li a i,
.header-social-link i {
  font-size: 22px;
  line-height: 1;
  color: inherit;
}

.soail-contact-header svg {
  width: 22px;
  height: 22px;
}

.soail-contact-header svg path {
  fill: var(--brand-gold) !important;
}

.soail-contact-header svg linearGradient stop {
  stop-color: var(--brand-gold) !important;
}

/* About social links gold */
.social-links li a,
.social-links li a i,
.contact-info .contact-info-content .social li a,
.contact-info .contact-info-content .social li a i,
.footer-widget a i,
.single-footer-widget .footer-information li i {
  color: var(--brand-gold) !important;
}
.social-links li a i{
  color: #fff !important;
}
.social-links li a:hover,
.contact-info .contact-info-content .social li a:hover {
  color: #7c5a2e !important;
}

/* ---------- Desktop navbar polish ---------- */
.grin-care-navbar {
  background-color: rgba(26, 26, 26, 0.78);
  backdrop-filter: blur(18px);
}

.grin-care-navbar.is-sticky {
  background-color: var(--brand-dark) !important;
}

.grin-care-navbar .main-navbar {
  padding: 0;
  background: transparent;
}

.grin-care-navbar .main-navbar .navbar {
  align-items: center;
  min-height: 88px;
  flex-wrap: nowrap;
}

.grin-care-navbar .main-navbar .navbar .navbar-brand img {
  height: 72px !important;
  width: auto !important;
  max-width: 170px;
  border-radius: 0 !important;
  object-fit: contain;
}

.grin-care-navbar .main-navbar .navbar .navbar-nav {
  align-items: center;
  margin-inline-start: 12px;
  flex: 1;
  gap: 15px;
}

.grin-care-navbar .main-navbar .navbar .navbar-nav .nav-item {
  margin-inline: 7px !important;
}

.grin-care-navbar .main-navbar .navbar .navbar-nav .nav-item a {
  font-size: 18px !important;
  font-weight: 600;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  white-space: nowrap;
}

.soail-contact-header {
  flex-shrink: 0;
}

.soail-contact-header ul li a,
.header-social-link {
  width: 36px;
  height: 36px;
}

.banner-content {
  text-align: start;
}

html[dir="rtl"] .banner-content {
  left: auto;
  right: 8%;
  text-align: right;
}

html[dir="ltr"] .banner-content {
  left: 8%;
  right: auto;
  text-align: left;
  width: min(640px, 90%);
}

html[dir="ltr"] .banner-content h1 {
  font-size: 40px;
  line-height: 1.25;
}

html[dir="ltr"] .banner-content span {
  letter-spacing: 0.5px;
  text-transform: none;
}

/* ---------- Article cards ---------- */
.article-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card__media {
  position: relative;
  background: #f0ebe3;
  overflow: hidden;
}
.article-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}
.article-card__media img {
  width: 100% !important;
  height: 350px  !important;
  /* object-fit: cover !important; */
  object-position: center;
  display: block;
}

.article-card__num,
.article-card__cat {
  position: absolute;
  z-index: 1;
}

.article-card__num {
  top: 14px;
  inset-inline-end: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.article-card__cat {
  bottom: 14px;
  inset-inline-start: 14px;
  background: var(--brand-gold);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
}

.article-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__body h3 {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.article-card__body h3 a {
  color: var(--brand-gold);
}

.article-card__body p {
  font-size: 14px;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 12px;
}

.services-details-image {
  overflow: hidden;
  border-radius: 20px;
  background: #f4efe6;
}

.services-details-image img {
  width: 100% !important;
  height: auto !important;
  /* max-height: 340px !important; */
  object-fit: cover !important;
  object-position: center top;
  display: block;
}

.service-detail-form {
  margin-top: 30px;
  padding: 24px;
  background: #f7f3ea;
  border-radius: 16px;
}

.service-detail-form .contact-form {
  max-width: none;
  text-align: start;
}

.service-detail-form .contact-form form .form-group .form-control {
  border: 1px solid #e6dfd2;
}

.widget_grin_posts_thumb .item {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.contact-page-area {
  background: #fff !important;
}

.contact-page-area .contact-form {
  max-width: none;
  text-align: start;
}

.contact-page-area .contact-form form .form-group .form-control {
  border: 1px solid #e5e0d6;
  background: #000;
}

.contact-page-info h3 {
  color: var(--brand-gold);
  margin-bottom: 20px;
}

.contact-page-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-page-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.contact-page-info li i {
  font-size: 22px;
  color: var(--brand-gold);
  margin-top: 4px;
}

.contact-page-info p {
  margin: 0;
}

.contact-page-map iframe,
.contact-area iframe {
  width: 100%;
  min-height: 360px;
  height: 360px !important;
  border-radius: 16px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
  text-align: start;
}

.review-card__media {
  position: relative;
  display: block;
}

.review-card__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.review-card__icon {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card h3 {
  font-size: 15px;
  color: var(--brand-gold);
  margin: 12px 14px 6px;
}

.review-card p {
  font-size: 13px;
  line-height: 1.8;
  margin: 0 14px 16px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reel-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Mobile header = PC dark header ---------- */
@media (max-width: 991px) {
  .navbar-area,
  .grin-care-navbar,
  .grin-care-navbar .main-responsive-nav {
    background-color: var(--brand-dark) !important;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .grin-care-navbar {
    position: absolute;
    inset-inline: 0;
    top: 0;
    z-index: 100;
    width: 100%;
  }

  .grin-care-navbar.is-sticky {
    position: fixed !important;
    background-color: var(--brand-dark) !important;
  }

  .main-responsive-nav .logo img {
    max-width: 72px !important;
    height: auto;
  }

  .mobile-menu-btn span {
    background: var(--brand-gold-soft);
  }

  .mobile-menu {
    background: var(--brand-dark);
  }

  .mobile-menu-header {
    border-bottom-color: rgba(175, 145, 93, 0.35);
  }

  .mobile-menu ul li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .mobile-menu ul li a,
  .mobile-menu ul li a.nav-link {
    color: #fff !important;
    font-size: 16px;
    padding: 14px 0;
  }

  .mobile-menu ul li a:hover {
    color: var(--brand-gold-soft) !important;
    padding-right: 8px;
  }

  .close-menu {
    color: var(--brand-gold-soft);
    background: transparent;
    border: 0;
    font-size: 32px;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
  }

  .mobile-lang-switch {
    margin-top: 12px;
    color: var(--brand-gold-soft) !important;
    border-color: var(--brand-gold) !important;
    padding: 6px 18px;
    font-size: 14px;
  }

  /* Hero fills first screen */
  .banner-slides,
  .banner-slides .swiper,
  .banner-slides .mySwiper-slider .swiper-slide,
  .banner-slides video {
    height: 100svh !important;
    min-height: 100svh;
    margin-top: 0 !important;
  }

  .banner-slides .swiper-slide img {
    object-fit: cover;
    object-position: center top;
  }

  .banner-content {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%);
    padding: 22px 18px !important;
    background: rgba(18, 18, 18, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(175, 145, 93, 0.35);
    border-radius: 14px;
    max-width: 520px;
    margin-inline: auto;
  }

  .banner-content span {
    font-size: 13px !important;
    color: var(--brand-gold-soft) !important;
    margin-bottom: 8px;
  }

  .banner-content h1 {
    font-size: 26px !important;
    line-height: 1.35 !important;
    color: var(--brand-gold-light) !important;
    margin-bottom: 10px;
  }

  .banner-content p {
    font-size: 13px !important;
    line-height: 1.7 !important;
    color: #f3f3f3 !important;
    margin: 0;
  }

  .banner-slides .swiper-button-next,
  .banner-slides .swiper-button-prev {
    color: #fff;
    width: 34px;
    height: 34px;
  }

  .banner-slides .swiper-button-next::after,
  .banner-slides .swiper-button-prev::after {
    font-size: 16px;
  }
}

/* ---------- Specialties: mobile card layout ---------- */
@media (max-width: 991px) {
  .specialties-area {
    padding-top: 60px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, #faf8f4 0%, #ffffff 100%);
  }

  .specialties-area .bg-line2 {
    display: none;
  }

  .specialties-wrapper {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .doctor-image {
    order: -1;
    margin-bottom: 8px;
  }

  .doctor-image img {
    max-width: 220px;
    margin-inline: auto;
  }

  .specialties-column.left,
  .specialties-column.right {
    display: grid;
    gap: 14px;
    text-align: right !important;
  }

  .specialty-item {
    margin-bottom: 0 !important;
    background: #fff;
    border: 1px solid rgba(175, 145, 93, 0.28);
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.04);
  }

  .specialty-item h3 {
    font-size: 18px !important;
    color: var(--brand-gold) !important;
    margin-bottom: 8px !important;
    line-height: 1.4;
  }

  .specialty-item p {
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: var(--text-muted) !important;
    margin: 0;
  }
}

.mySwiper-testim .swiper-slide {
  height: auto;
}

.gallery-card .overlay {
  display: none;
}

/* ---------- Footer: no logo covering text ---------- */
.footer-area.site-footer,
.footer-area {
  background: #f7f4ef !important;
  background-image: none !important;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.footer-area::after {
  background-color: transparent !important;
  content: none !important;
}

.footer-area .container,
.footer-area .copyright-area {
  position: relative;
  z-index: 2;
}

.footer-brand {
  margin-bottom: 36px;
}

.footer-logo-img {
  max-width: 140px;
  height: auto;
  display: inline-block;
}

.footer-widget h3,
.single-footer-widget h3 {
  color: var(--brand-gold) !important;
  font-size: 20px !important;
  margin-bottom: 16px !important;
  font-weight: 700;
}

.footer-widget p,
.footer-widget a,
.footer-ul li a,
.copyright-area p,
.copyright-area a {
  color: var(--text-main) !important;
}

.footer-widget p,
.footer-ul li a {
  font-size: 15px;
  line-height: 1.9;
}

.footer-ul li a:hover {
  color: var(--brand-gold) !important;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact-list li i {
  color: var(--brand-gold);
  font-size: 18px;
}

.copyright-area {
  border-top: 1px dashed rgba(175, 145, 93, 0.45);
  margin-top: 30px;
  padding-top: 18px !important;
  padding-bottom: 10px;
  background: transparent;
}

.copyright-area p {
  font-size: 13px;
  text-align: center;
}

/* ---------- Blog images: stop stretching ---------- */
.single-blog .blog-image {
  overflow: hidden;
  border-radius: 12px;
  background: #f0ebe3;
}

.single-blog .blog-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.single-blog .blog-image img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 10;
  object-fit: cover !important;
  object-position: center;
  border-radius: 12px;
  display: block;
}

.blog-detail-cover {
  overflow: hidden;
  border-radius: 16px;
  background: #f0ebe3;
}

.blog-detail-cover img {
  width: 100%;
  height: 600px;
  display: block;
}

@media (max-width: 767px) {
  .single-blog .blog-content {
    padding-top: 16px;
  }
}

/* ---------- Facebook reels (9:16, poster not cropped) ---------- */
.reel-card {
  height: 100%;
}

.reel-card__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #1a1612;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(175, 145, 93, 0.3);
}

.reel-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #1a1612;
  cursor: pointer;
}

.reel-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.reel-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.reel-card__open {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--brand-gold);
  text-align: center;
}

/* ---------- Reviews + gallery (Fancybox) ---------- */
.review-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
  text-align: start;
}

.review-card h3 {
  font-size: 15px;
  color: var(--brand-gold);
  margin: 12px 14px 6px;
}

.review-card p {
  font-size: 13px;
  line-height: 1.8;
  margin: 0 14px 16px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__media {
  position: relative;
  display: block;
}

.review-card__media img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.review-card__icon {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 8, 6, 0.72);
}

.review-modal__box,
.review-modal__gallery {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 18px;
}

.review-modal__box {
  background: #111;
}

.review-modal__box img {
  width: 100%;
  display: block;
  filter: blur(6px) brightness(0.45);
}

.review-modal__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  color: #fff;
}

.review-modal__overlay h3 {
  color: var(--brand-gold-soft);
  font-size: 22px;
}

.review-modal__overlay p {
  font-size: 16px;
  line-height: 1.9;
}

.review-modal__gallery {
  background: #fff;
  padding: 24px;
}

.review-modal__x {
  position: absolute;
  top: 8px;
  inset-inline-end: 12px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  color: #222;
}

.gallery-lightbox-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

/* ---------- Trust / vision ---------- */
.trust-card {
  background: #fff;
  border: 1px solid rgba(175, 145, 93, 0.25);
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.trust-card h3 {
  color: var(--brand-gold);
  font-size: 18px;
  margin-bottom: 10px;
}

.trust-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.vision-card {
  background: #f7f1e6;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
}

.vision-card span {
  color: var(--brand-gold);
  font-weight: 700;
}

.vision-card p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.9;
}

.contact-heading {
  font-size: 26px;
  color: var(--brand-gold);
  line-height: 1.5;
  margin-bottom: 12px;
}

.header-social-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social {
  margin-top: 16px;
}

/* ---------- General mobile polish ---------- */
@media (max-width: 1199px) {
  .header-social-list li:nth-child(3),
  .header-social-list li:nth-child(4) {
    display: none;
  }
}

@media (max-width: 991px) {
  .wrapper {
    right: auto !important;
    left: 8px !important;
    bottom: 18px !important;
    z-index: 90;
  }

  .wrapper .icon {
    transform: none;
    width: 46px;
    height: 46px;
    padding: 12px;
  }

  .contact-area {
    padding-bottom: 120px !important;
    padding-left: 72px;
  }

  html[dir="ltr"] .contact-area {
    padding-left: 16px;
    padding-right: 72px;
  }

  html[dir="ltr"] .wrapper {
    left: auto !important;
    right: 8px !important;
  }
}

@media (max-width: 767px) {
  .ptb-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .dental-tourism-about-content h3,
  .section-title h2,
  .section-title-warp h2,
  .contact-heading {
    font-size: 22px !important;
    line-height: 1.45;
  }

  .page-banner-area {
    margin: 0;
    min-height: 180px;
  }

  .footer-widget {
    margin-bottom: 28px;
  }

  .col-lg-6.text-lg-end {
    text-align: right !important;
  }

  .review-modal__overlay p {
    font-size: 15px;
  }
}

