/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  --bg-color: #fff; 
  --text-color: #091a2a; 
  --second-color: #004a8e; 
  --main-color: #00b4ff;

  --white: #ffffff;
  --light-gray: #f1f5f9;
  --border-color: #e5e7eb;
	
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: var(--bg-color);
  color: var(--text-color);
  padding-top: 80px; /* offset fixed header */
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

a {
  color: var(--main-color);
}

a:hover {
  color: var(--second-color);
}

/* ===== CONTAINER ===== */
.container {
 /*  width: 90%; */
	padding: 0 20px; /* âœ… adds breathing room on sides */
}
.section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px); /* ðŸ”¥ glass effect */
  z-index: 2000;
  border-bottom: 1px solid var(--border-color);

}


.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
position: relative;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--main-color);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--main-color);
  border: 2px solid var(--main-color);
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary {
  border: 2px solid var(--main-color);
  color: var(--main-color);
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 10px;
  transition: background 0.2s ease;
}

.btn-primary,
.btn-secondary {
  min-height: 44px;
}

.btn-primary:hover,
.btn-secondary:hover {
  background: var(--second-color);
  border: 2px solid var(--main-color);
  color: #fff;
}
/* ===== HERO ===== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* HERO LOGO */
.hero-content > * {
  margin-bottom: 15px;
}

.hero-logo img {
  max-width: 800px;
}

.vs {
  font-size: 20px;
  margin: 10px 0;
}

.vs img {
  max-height: 50px;
  vertical-align: bottom;
}


.hero-image,
.vision-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/hero2.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-image {
  filter: blur(12px);
	opacity: 0.5;
}

.vision-layer {
  opacity: 0.3;
}

.vision-layer-1 {
  transform: translateX(-20px);
}

.vision-layer-2 {
  transform: translateX(20px);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white)
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero p {
  max-width: 800px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  font-size: 22px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.35)
  );
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 20px;
}

.section h2 {
  text-align: center;
	width: 100%;
  margin-bottom: 40px;
  font-size: 32px;
}

.alt {
  background: var(--light-gray);
}

/* ===== GRID ===== */
.grid-3,
.grid-2 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.grid-3 > * {
  flex: 1 1 calc(33.333% - 20px);
}

.grid-2 > * {
  flex: 1 1 calc(50% - 20px);
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card:hover {
  transform: translateY(-5px);
}

/* Shop cards */
.card .bigicon {
  font-size: 36px;
  color: var(--main-color);
  margin-bottom: 12px;
  display: block;
}

.card h3 {
  margin-bottom: 16px;
}

.card .btn-secondary {
  margin-left: 0;
}
/* ===== SERVICES SCROLL ===== */
.services-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  justify-content: center; /* âœ… centers on desktop */
  padding-bottom: 10px;
}

.service-card {
  min-width: 220px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ===== SPLIT SECTION ===== */
.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 12px;
}

.split > div {
  flex: 1;
  text-align: left; /* âœ… force left alignment */
}

/* ===== REVIEWS ===== */
.center {
  text-align: center;
}

.center p {
  margin-bottom: 10px;
  font-size: 18px;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

.cta-bg {
  background-image: url('../images/bg-glasses-wall.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin-bottom: 20px;
  font-size: 38px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta .btn-primary {
  background: var(--main-color);
  font-size: 16px;
  padding: 14px 36px;
}

.cta .btn-primary:hover {
  background: var(--second-color);
  color: #fff;
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: var(--bg-color);
    padding: 100px 0;
}


/* HEADER
--------------------------------------------------------- */

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.contact-header .eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--second-color);
    margin-bottom: 10px;
}

.contact-header h2 {
    margin-bottom: 12px;
}

.contact-header p {
    font-size: 18px;
    margin: 0;
}


/* CONTACT CARDS
--------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1050px;
    margin: 0 auto 45px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;

    background: #ffffff;
    padding: 28px 30px;

    border-radius: 20px;

    text-decoration: none;
    color: var(--text-color);

    box-shadow: 0 10px 30px rgba(9, 26, 42, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(9, 26, 42, 0.12);
}


/* ICON
--------------------------------------------------------- */

.contact-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 180, 255, 0.10);

    border-radius: 16px;

    color: var(--main-color);

    font-size: 21px;
}


/* CONTACT TEXT
--------------------------------------------------------- */

.contact-info span {
    display: block;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    color: var(--second-color);

    margin-bottom: 5px;
}

.contact-info strong {
    display: block;

    font-size: 18px;
    font-weight: 600;

    color: var(--text-color);
}


/* LOCATIONS
--------------------------------------------------------- */

.contact-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    max-width: 1050px;

    margin: 0 auto 50px;
}

.contact-location {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    background: rgba(255, 255, 255, 0.65);

    padding: 25px 30px;

    border-radius: 18px;

    border: 1px solid rgba(9, 26, 42, 0.06);
}

.location-icon {
    color: var(--main-color);

    font-size: 23px;

    padding-top: 3px;
}

.contact-location h3 {
    margin: 0 0 7px;

    font-size: 20px;
}

.contact-location p {
    margin: 0;

    line-height: 1.6;
}


/* SOCIAL
--------------------------------------------------------- */

.contact-social {
    text-align: center;

    max-width: 1050px;

    margin: 0 auto;
}

.contact-social h3 {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;

    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;

    background: var(--text-color);

    color: #ffffff;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);

    background: var(--second-color);
}

.social-links i {
    font-size: 18px;
}

@media (max-width: 768px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-header {
        margin-bottom: 35px;
    }

    .contact-header p {
        font-size: 16px;
    }


    /* CONTACT CARDS */

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;

        margin-bottom: 30px;
    }

    .contact-card {
        padding: 22px;
    }


    /* LOCATIONS */

    .contact-locations {
        grid-template-columns: 1fr;
        gap: 15px;

        margin-bottom: 35px;
    }

    .contact-location {
        padding: 22px;
    }


    /* SOCIAL */

    .social-links {
        flex-direction: column;

        max-width: 250px;

        margin: 0 auto;
    }

    .social-links a {
        justify-content: center;
    }

}

/* ===== LOCATIONS ===== */
.locations {
  background: var(--bg-color);
}

.locations-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.location-card {
  position: relative;
  flex: 1 1 420px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  text-align: center;
}

.location-card:hover {
  transform: translateY(-6px);
}

.location-card a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.location-card a:hover {
    transform: translateY(-3px);
    color: var(--second-color);
}

/* Overlay sits inside, clipped by parent border-radius */
.location-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    to bottom,
    rgba(0, 74, 142, 0.55),
    rgba(0, 74, 142, 0.82)
  );
}

/* All text content sits above overlay */
.location-content {
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  color: #fff;
}

.location-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.location-card p {
  margin-bottom: 6px;
  color: rgba(255,255,255,0.9);
}

.location-icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--main-color);
}

/* Badge sits outside the overlay stack entirely */
.location-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  z-index: 2;
  background: var(--main-color);
  color: white;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



/* ===== DOCTORS SECTION ===== */

.doctors {
  background: linear-gradient(180deg, #eaf6fb 0%, #f7fbfd 100%);
  text-align: center;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* DOCTOR CARD */
.doctor-card {
    background: #ffffff;

    padding: 0 35px 35px;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(9, 26, 42, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(9, 26, 42, 0.12);
}

/* DOCTOR IMAGE */
.doctor-card img {
    display: block;

    width: calc(100% + 70px);
    height: 270px;

    margin-left: -35px;
    margin-bottom: 25px;

    object-fit: cover;
    object-position: center 35%;

    border-radius: 24px 24px 0 0;
}

/* NAME */
.doctor-card h3 {
  margin-bottom: 12px;
}

/* SHORT DESCRIPTION */
.doctor-preview {
  margin: 0 auto 20px;
  max-width: 600px;
  color: #666;
  line-height: 1.6;
}

/* ACCORDION */
.doctor-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  text-align: left;
  margin-top: 15px;
}

.doctor-bio.open {
  max-height: 1000px;
}

.doctor-bio p {
  line-height: 1.7;
  margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 768px) {

  .doctors-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    gap: 30px;
  }

  .doctor-card {
    padding: 35px 25px;
  }
   
	.doctor-card img {
        height: 230px;
        object-position: center 30%;
    }

  .doctor-bio {
    text-align: left;
  }
}
/* ===== FAMILIES SECTION ===== */
.families-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.families-section::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 180, 255, 0.06);
  top: 20px;
  right: 3%;
  pointer-events: none;
}

.families-section::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 180, 255, 0.06);
  bottom: 30px;
  left: 2%;
  pointer-events: none;
}

.families-header {
  text-align: center;
  margin-bottom: 40px;
}

.families-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--main-color);
  border-radius: 20px;
  padding: 6px 18px;
  margin-bottom: 16px;
}

.families-header h2 {
  margin-bottom: 0;
}

/* Card */
.families-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: #fff;
}

.families-card--featured {
  background: #e8f8fb;
}

/* Image area */
.families-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.families-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.families-card:hover .families-card-image img {
  transform: scale(1.04);
}

/* Fade from image into card background */
.families-card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
}

.families-card--featured .families-card-image::after {
  background: linear-gradient(to bottom, transparent, #e8f8fb);
}

/* Text area */
.families-card-text {
  padding: 16px 24px 28px;
}

.families-card-text h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--second-color);
}

.families-card-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ===== GLASSES SECTION ===== */
.glasses-section {
  background: linear-gradient(135deg, #e8f8fb 0%, #f0fafe 60%, #e4f5f9 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

/* Decorative bubbles */
.glasses-section::before,
.glasses-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 180, 255, 0.08);
  pointer-events: none;
}
.glasses-section::before {
  width: 300px;
  height: 300px;
  top: -80px;
  right: 10%;
}
.glasses-section::after {
  width: 180px;
  height: 180px;
  bottom: -40px;
  right: 25%;
}

.glasses-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

/* LEFT PHOTO */
.glasses-photo {
  flex: 0 0 400px;
}

.glasses-photo img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 150;
}

/* RIGHT TEXT */
.glasses-text {
  flex: 1;
}

.glasses-text h2 {
  text-align: left;
  font-size: 30px;
  margin-bottom: 16px;
  color: var(--text-color);
}

.glasses-text p {
  font-size: 17px;
  color: #555;
  margin-bottom: 16px;
  max-width: 440px;
}

.glasses-text h3 {
  font-size: 22px;
  color: var(--text-color);
  margin-bottom: 24px;
}

/* Brand logos row */
.brand-logos {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.brand-logos img {
  height: 110px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

/*.brand-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
} */

/* ===== SHOP SECTION ===== */
.shop-section {
  position: relative;
  background-image: url('../images/bg-glasses-wall.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.shop-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 180, 255, 0.82),
    rgba(0, 74, 142, 0.88)
  );
  z-index: 0;
}

.shop-section .container {
  position: relative;
  z-index: 1;
}

.shop-section h2 {
  color: #fff;
}

.shop-section .card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.shop-section .card h3 {
  color: #fff;
}

.shop-section .card .bigicon {
  color: #fff;
}

.shop-section .card .btn-secondary {
  border-color: #fff;
  color: #fff;
}

.shop-section .card .btn-secondary:hover {
  background: #fff;
  color: var(--main-color);
}

/* ===== SERVICES ACCORDION ===== */
.services-section {
  background: var(--light-gray);
}

.services-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  display: block;
  cursor: pointer;
}

.service-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--main-color);
  color: var(--text-color);
}

.service-item.open {
  border-color: var(--main-color);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 600;
}

.service-title i {
  font-size: 20px;
  color: var(--main-color);
  width: 24px;
  text-align: center;
}

.service-chevron {
  color: #aaa;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.service-item.open .service-chevron {
  transform: rotate(180deg);
  color: var(--main-color);
}

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}

.topborder{
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.service-body p {
  padding-bottom: 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.service-item.open .service-body {
  max-height: 750px;
}

.service-learn-more {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 10px 28px;
  background: var(--main-color);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease;
  pointer-events: all;
}

.service-learn-more:hover {
  background: var(--second-color);
  color: #fff;
}

.service-header,
.service-title,
.service-chevron {
  pointer-events: none;
}

/* ===== PATIENT SECTION ===== */
.patient-section {
  background: var(--second-color);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative circles */
.patient-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -80px;
  left: -60px;
  pointer-events: none;
}

.patient-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -50px;
  right: 5%;
  pointer-events: none;
}

.patient-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

/* LEFT: Text */
.patient-text {
  flex: 1;
}

.patient-text .families-eyebrow {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.patient-text h2 {
  text-align: left;
  color: #fff;
  margin-bottom: 14px;
}

.patient-text p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
}

/* RIGHT: Buttons */
.patient-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 280px;
}

.patient-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  padding: 16px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.patient-btn i {
  font-size: 20px;
  color: var(--main-color);
  width: 24px;
  text-align: center;
}

.patient-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--main-color);
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .patient-inner {
    flex-direction: column;
    gap: 30px;
  }

  .patient-text h2 {
    font-size: 24px;
  }

  .patient-buttons {
    flex: none;
    width: 100%;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #004a8e;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  color: var(--white);
  padding: 0px 0px 30px;
  position: relative;
}

/* WAVE */
.footer-wave {
  background-color: #004a8e;
  margin-bottom: -2px;
  line-height: 0;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.site-footer .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID */
.footer-grid {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-col p {
  margin-bottom: 6px;
  font-size: 14px;
  opacity: 0.9;
}

/* LOGO COLUMN */
.footer-brand {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-brand img {
  max-width: 160px;
  height: auto;
}

/* PARTNER LOGO */
.footer-partner {
  text-align: center;
  margin-bottom: 20px;
}

.footer-partner img {
  max-width: 228px;
}

/* TOP */
.footer-top {
  text-align: center;
  font-size: 24px;
  padding: 30px 0 15px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  margin: 0 5px;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ICON SPACING */
.footer-col i {
  color: #FFD54F;
  margin-right: 8px;
}

/* SOCIAL */
.footer-social a {
  font-size: 25px;
  color: var(--second-color) !important;
}

.footer-social a i {
  color: #ffffff !important;
}

.footer-social a:hover {
  color: var(--main-color);
  transform: translateY(-2px);
}

/* LINKS IN FOOTER */
.footer-col a {
  color: var(--white);
  text-decoration: none;
}

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

/* ===== MOBILE MAIN PAGE===== */

/* MOBILE NAV */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease;
}

nav.active ~ .menu-toggle i {
  transform: rotate(90deg);
}

@media (max-width: 768px) {

  .hero h1 {
    font-size: 25px;
  }
	
  .hero p {
    font-size: 16px;
    padding: 0 10px;
  }
	
  .hero-logo img {
    max-width: 300px;
  }

  .vs {
    font-size: 16px;
  }

  .vs img {
    max-height: 25px;
  }
	
  .section {
    padding: 60px 20px;
  }

  .locations-grid {
    flex-direction: column;
  }	

  .grid-3 > *,
  .grid-2 > * {
    flex: 1 1 100%;
  }

  .split {
    flex-direction: column;
  }
	
  .menu-toggle {
    display: block;
    position: absolute;
    top: 18px;   /* adjust as needed */
    right: 20px; /* pushes to top-right */
    z-index: 2001;
	  transition: transform 0.3s ease;
  }

 nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    padding: 20px;
    z-index: 1000; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

 nav.active {
    display: flex;
  }

  nav a {
    color: #000;
    padding: 10px 0;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
	justify-content: center;
  }
  .logo {
    margin: 0 auto;
  }
	
  .services-scroll {
    justify-content: flex-start; /* keeps mobile scroll natural */
  }
	
  .doctor-grid {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

	
   .doctor-title {
    text-align: center; /* keep this centered */
  }

  .doctor-content {
	max-width: 100%;
    text-align: left;
	padding: 0 10px;
	  
  }
	
.glasses-inner {
    flex-direction: column;
    gap: 30px;
  }

  .glasses-photo {
    flex: none;
    width: 100%;
  }

  .glasses-text h2 {
    font-size: 19px;
  }

.brand-logos {
  gap: 8px;
}
.brand-logos img {
  height: 90px;
}
.footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-col {
    width: 100%;
    max-width: 300px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ===== LOCATION PAGES ===== */
.location-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO BANNER */
.location-hero {
  background: linear-gradient(135deg, var(--second-color) 0%, #003a70 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.location-hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0,180,255,0.08);
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.location-hero::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(0,180,255,0.06);
  bottom: -60px;
  left: 5%;
  pointer-events: none;
}

.location-hero-inner {
  position: relative;
  z-index: 1;
}

.location-hero .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--main-color);
  border: 1.5px solid var(--main-color);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.location-hero h1 {
  font-size: 42px;
  margin-bottom: 14px;
  color: #fff;
}

.location-hero p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 24px;
}

.location-hero .btn-primary {
  font-size: 16px;
  padding: 14px 36px;
}

/* MAIN CONTENT LAYOUT */
.location-main {
  padding: 70px 20px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* LEFT COLUMN */
.location-content h2 {
  font-size: 30px;
  margin-bottom: 16px;
  color: var(--second-color);
}

.location-content-page p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* Placeholder image */
.location-img-placeholder {
  width: 100%;
  max-height:  340px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6bb8d4;
  font-size: 14px;
  margin: 30px 0;
  overflow: hidden;
}

.location-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit:contain;
  border-radius: 16px;
}

.location-img-placeholder.tall {
  max-height: 340px;
}

/* RIGHT COLUMN — INFO CARD */
.location-info-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.07);
  padding: 36px 30px;
  position: sticky;
  top: 100px;
}

.location-info-card h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--second-color);
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 12px;
}

.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.info-row i {
  color: var(--main-color);
  font-size: 18px;
  margin-top: 2px;
  width: 20px;
  flex-shrink: 0;
}

.info-row-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.info-row-text a {
  color: var(--second-color);
  text-decoration: none;
  font-weight: 500;
}

.info-row-text a:hover {
  color: var(--main-color);
}

/* HOURS TABLE */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 4px;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-color);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 7px 0;
  color: #444;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--second-color);
  width: 110px;
}

.hours-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.hours-section h4 {
  font-size: 15px;
  color: var(--second-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-section h4 i {
  color: var(--main-color);
}

.location-info-card .btn-primary {
  display: block;
  text-align: center;
  margin-top: 24px;
  width: 100%;
}

/* MAP */
.location-map {
  width: 100%;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--border-color);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* SERVICES STRIP */
.location-services {
  background: var(--light-gray);
  padding: 70px 20px;
}

.location-services h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: var(--second-color);
}

.location-services .grid-3 {
  max-width: 1200px;
  margin: 0 auto;
}

.location-services .card {
  text-align: center;
}

.location-services .card i {
  font-size: 30px;
  color: var(--main-color);
  margin-bottom: 12px;
  display: block;
}


/* CTA STRIP */
.location-cta {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  background-image: 
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('../images/bg-glasses-wall.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.location-cta h2 {
  font-size: 32px;
  margin-bottom: 14px;
  color: #fff;
}

.location-cta p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 28px;
}

/* MOBILE */
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-info-card {
    position: static;
  }

  .location-hero h1 {
    font-size: 28px;
  }
}

/* ===== PRIVACY PAGE ===== */
.privacy-page {
  padding: 60px 20px;
}

.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-header {
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 24px;
  margin-bottom: 40px;
}

.privacy-header h1 {
  font-size: 36px;
  color: var(--second-color);
  margin-bottom: 8px;
}

.privacy-header p {
  color: #888;
  font-size: 14px;
}

.privacy-content h2 {
  font-size: 20px;
  color: var(--second-color);
  margin: 36px 0 10px;
  padding-left: 14px;
  border-left: 4px solid var(--main-color);
}

.privacy-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
}

.privacy-content address {
  font-style: normal;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-top: 10px;
}

.privacy-content address a {
  color: var(--main-color);
}

/* ===== INSURANCE PAGE ===== */
.insurance-cta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #e8f8fb, #f0fafe);
  border: 1px solid var(--main-color);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 15px;
  color: var(--second-color);
}

.insurance-cta-bar i {
  color: var(--main-color);
  font-size: 18px;
  flex-shrink: 0;
}

.insurance-cta-bar a {
  color: var(--second-color);
  font-weight: 600;
  text-decoration: none;
}

.insurance-cta-bar a:hover {
  color: var(--main-color);
}

/* Logo grid */
.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  margin: 40px 0;
}

.insurance-logo {
  width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.insurance-logo:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.insurance-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Bottom note */
.insurance-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--light-gray);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 40px;
}

.insurance-note i {
  color: var(--main-color);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.insurance-note p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .insurance-logo {
    width: 130px;
    height: 75px;
  }
}

/* ===== PROMOTIONS PAGE ===== */
.promos-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
}

.promo-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.promo-item:hover {
  border-color: var(--main-color);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.promo-item.open {
  border-color: var(--main-color);
}

.promo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  gap: 20px;
}

.promo-header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.promo-date {
  font-size: 13px;
  color: var(--main-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.promo-header-left h2 {
  font-size: 20px;
  color: var(--second-color);
  margin: 0;
  text-align: left;
}

.promo-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.promo-badge {
  background: #e8f8fb;
  color: var(--main-color);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--main-color);
}

.promo-chevron {
  color: #aaa;
  font-size: 16px;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.promo-item.open .promo-chevron {
  transform: rotate(180deg);
  color: var(--main-color);
}

/* Body */
.promo-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.promo-item.open .promo-body {
  max-height: 600px;
}

.promo-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0 28px 28px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.promo-text {
  flex: 1;
}

.promo-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* PDF Preview */
.promo-pdf {
  flex: 0 0 200px;
}

.promo-pdf-link {
  display: block;
  text-decoration: none;
}

.promo-pdf-preview {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.promo-pdf-preview img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.promo-pdf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 74, 142, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.promo-pdf-preview:hover .promo-pdf-overlay {
  opacity: 1;
}

.promo-pdf-overlay i {
  font-size: 32px;
  color: #fff;
}

.promo-pdf-overlay span {
  font-size: 13px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .promo-inner {
    flex-direction: column;
  }

  .promo-pdf {
    flex: none;
    width: 100%;
  }

  .promo-pdf-preview img {
    height: 180px;
  }

  .promo-header {
    padding: 18px 20px;
  }

  .promo-header-left h2 {
    font-size: 17px;
  }
}

/* ===== CONTACT lenses Page  ===== */
.contacts-shop-box {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, var(--second-color), #003a70);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 40px 0;
  color: #fff;
}

.contacts-shop-icon {
  font-size: 52px;
  color: var(--main-color);
  flex-shrink: 0;
}

.contacts-shop-text h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.contacts-shop-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contacts-shop-text .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .contacts-shop-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }
}

