/* ===========================================
   Main Line Dental Implant Center
   Website Styles
   Colors based on logo: Orange #E5751C, Gray #6B6B6B
   =========================================== */

/* CSS Variables */
:root {
  --brand-orange: #E5751C;
  --light-orange: #F5A623;
  --brand-gray: #6B6B6B;
  --light-gray: #A8A8A8;
  --warm-white: #FAFAFA;
  --soft-cream: #F9F7F4;
  --dark-charcoal: #333333;
  --white: #FFFFFF;

  --font-primary: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

  --transition: all 0.3s ease;
  --border-radius: 8px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-charcoal);
  background-color: var(--warm-white);
}

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

a {
  color: var(--brand-orange);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--light-orange);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--brand-gray);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

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

/* ===========================================
   Header & Navigation
   =========================================== */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: var(--soft-cream);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-top .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-gray);
  font-weight: 600;
  font-size: 0.95rem;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: var(--brand-orange);
}

.header-main {
  padding: 16px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--brand-gray);
  line-height: 1.2;
}

.logo-text .highlight {
  color: var(--brand-orange);
  font-weight: 600;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: var(--brand-gray);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-orange);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-orange);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brand-gray);
  transition: var(--transition);
}

/* ===========================================
   Buttons
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--brand-orange);
  color: var(--white);
  border-color: var(--brand-orange);
}

.btn-primary:hover {
  background: var(--light-orange);
  border-color: var(--light-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-orange);
  border-color: var(--brand-orange);
}

.btn-secondary:hover {
  background: var(--brand-orange);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--brand-orange);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--soft-cream);
  border-color: var(--soft-cream);
}

/* ===========================================
   Hero Section
   =========================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f0eb 0%, #e8e2dc 100%);
  margin-top: 110px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-tagline {
  display: inline-block;
  color: var(--brand-orange);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3rem;
  color: var(--brand-gray);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--brand-orange);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--brand-gray);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-phone {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-orange);
}

.hero-address {
  color: var(--brand-gray);
  font-size: 0.95rem;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--brand-orange);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
}

/* ===========================================
   Section Styles
   =========================================== */
.section {
  padding: 100px 0;
}

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

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

.section-label {
  display: inline-block;
  color: var(--brand-orange);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--brand-gray);
  font-size: 1.1rem;
}

/* ===========================================
   About Preview Section
   =========================================== */
.about-preview {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--brand-orange);
  border-radius: 16px;
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--brand-gray);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--soft-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-highlight-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--brand-orange);
}

.about-highlight h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-highlight p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--light-gray);
}

/* Doctor Philosophy Quote */
.doctor-philosophy {
  background: var(--soft-cream);
  border-left: 4px solid var(--brand-orange);
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--brand-gray);
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===========================================
   Services Grid
   =========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-orange);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-white) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--brand-orange);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--brand-orange);
  transition: var(--transition);
}

.service-card:hover .service-icon svg {
  fill: var(--white);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 16px;
}

.service-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===========================================
   Why Choose Us
   =========================================== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 24px;
}

.why-number {
  width: 56px;
  height: 56px;
  background: var(--brand-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 20px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--brand-gray);
}

/* ===========================================
   Testimonials
   =========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  opacity: 0.1;
}

.testimonial-quote svg {
  width: 100%;
  height: 100%;
  fill: var(--brand-orange);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--brand-orange);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brand-gray);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--soft-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--brand-orange);
}

.testimonial-name {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--dark-charcoal);
}

.testimonial-source {
  font-size: 0.85rem;
  color: var(--light-gray);
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.google-rating-score {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-gray);
}

.google-rating-info {
  text-align: left;
}

.google-rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.google-rating-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--brand-orange);
}

.google-rating-text {
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* ===========================================
   CTA Section
   =========================================== */
.cta-section {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--light-orange) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ===========================================
   Footer
   =========================================== */
.footer {
  background: var(--dark-charcoal);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--brand-orange);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* ===========================================
   Page Header (Inner Pages)
   =========================================== */
.page-header {
  background: linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-white) 100%);
  padding: 140px 0 60px;
  text-align: center;
  margin-top: 110px;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  color: var(--brand-gray);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--light-gray);
}

.breadcrumb span {
  color: var(--brand-orange);
}

/* ===========================================
   Contact Section
   =========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--soft-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--brand-orange);
}

.contact-item h4 {
  margin-bottom: 4px;
}

.contact-item p {
  margin: 0;
  color: var(--brand-gray);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--brand-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E0E0E0;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(229, 117, 28, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===========================================
   Before & After Gallery
   =========================================== */
.gallery-category {
  margin-bottom: 60px;
}

.gallery-category h3 {
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--soft-cream);
}

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

.gallery-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.gallery-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gallery-before,
.gallery-after {
  position: relative;
}

.gallery-before img,
.gallery-after img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===========================================
   Responsive Design
   =========================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-image {
    display: none;
  }

  .about-preview {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    max-width: 350px;
    margin: 0 auto;
  }

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

  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }

  .header-top {
    display: none;
  }

  .header-main {
    padding: 12px 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 80px 0;
    margin-top: 70px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .section {
    padding: 60px 0;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   Floating Call Button (Mobile)
   =========================================== */
.floating-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--brand-orange);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(229, 117, 28, 0.4);
  z-index: 999;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.floating-call-btn:hover {
  background: var(--light-orange);
  transform: scale(1.1);
}

.floating-call-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(229, 117, 28, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(229, 117, 28, 0.6); }
}

@media (max-width: 768px) {
  .floating-call-btn {
    display: flex;
  }
}

/* ===========================================
   Credentials & Awards Section
   =========================================== */
.credentials-section {
  padding: 60px 0;
  background: var(--soft-cream);
}

.credentials-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.credential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.credential-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.credential-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--brand-orange);
}

.credential-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.credential-item span {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-gray);
  max-width: 120px;
}

/* ===========================================
   Mobile Menu
   =========================================== */
@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
  }

  .nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
  }

  .nav .btn {
    margin-top: 24px;
    width: 100%;
    text-align: center;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1002;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
  }

  .mobile-overlay.active {
    display: block;
  }
}

/* ===========================================
   Image Lightbox
   =========================================== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 16px;
  font-size: 1rem;
}

.gallery-item {
  cursor: pointer;
}

/* ===========================================
   Awards Banner
   =========================================== */
.awards-banner {
  background: linear-gradient(135deg, var(--brand-gray) 0%, #4a4a4a 100%);
  padding: 24px 0;
  text-align: center;
}

.awards-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.award-item svg {
  width: 24px;
  height: 24px;
  fill: var(--light-orange);
}

.award-item span {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
}
