@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
  --primary: #0f766e; /* Luxurious Teal Emerald */
  --primary-light: #14b8a6; /* Mint Teal */
  --primary-dark: #042f2e; /* Deep Forest Abyss */
  --primary-rgb: 15, 118, 110;
  --secondary: #eab308; /* Sunlight Gold */
  --secondary-light: #fde047; /* Yellow Glow */
  --secondary-dark: #ca8a04; /* Rich Copper Gold */
  --accent: #f97316; /* Vibrant Coral Orange */
  --accent-light: #ffedd5;
  --text: #1e293b; /* Modern Slate 800 */
  --text-muted: #64748b; /* Slate 500 */
  --bg-cream: #f9fafb; /* Ultra-premium light gray-white */
  --bg-white: #ffffff;
  --bg-footer: #022c22; /* Deep spruce green */
  --border-color: #e2e8f0; /* Soft border */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 10px rgba(15, 118, 110, 0.02);
  --shadow-md: 0 10px 30px rgba(15, 118, 110, 0.05);
  --shadow-lg: 0 20px 50px rgba(15, 118, 110, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* --- SYSTEM RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

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

ul {
  list-style: none;
}

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

/* --- REUSABLE UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: rgba(30, 70, 32, 0.07);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(202, 138, 4, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(202, 138, 4, 0.35);
}

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

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.2);
}

.section-title-wrapper {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

/* --- HEADER & NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(235, 231, 222, 0.5);
  transition: var(--transition);
}

.header.scrolled {
  background-color: var(--bg-white);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: var(--transition);
}

.header.scrolled .navbar {
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo img {
  height: 65px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .nav-logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--primary-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

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

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* --- MOBILE DRAWER --- */
@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 100px 3rem 3rem 3rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-cta {
    display: none;
  }
}

/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  background-image: linear-gradient(rgba(20, 40, 21, 0.75), rgba(20, 40, 21, 0.75)), url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  color: var(--bg-cream);
  padding-top: 90px;
}

.hero-content {
  max-width: 800px;
  z-index: 10;
}

.hero-title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.4s;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.6s;
}

/* --- QUICK HIGHLIGHTS / BARS --- */
.highlights-bar {
  background-color: var(--primary-dark);
  color: var(--bg-cream);
  padding: 2rem 0;
  border-top: 4px solid var(--secondary);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.highlight-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg-white);
}

.highlight-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* --- HOME SPECIALTIES --- */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.specialty-card {
  background: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30,70,32,0.02) 0%, rgba(212,175,55,0.02) 100%);
  z-index: 1;
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary);
}

.specialty-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: rgba(30, 70, 32, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  color: var(--primary);
  font-size: 2.2rem;
  transition: var(--transition);
  z-index: 2;
  position: relative;
  border: 1px solid rgba(30, 70, 32, 0.1);
}

.specialty-card:hover .specialty-icon-wrapper {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: rotateY(180deg);
}

.specialty-card h3 {
  z-index: 2;
  position: relative;
}

.specialty-card p {
  font-size: 0.95rem;
  z-index: 2;
  position: relative;
}

@media (max-width: 991px) {
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .specialties-grid {
    grid-template-columns: 1fr;
  }
}

/* --- CONDITIONS LIST SECTION --- */
.conditions-section {
  background-color: var(--bg-white);
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.condition-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--bg-cream);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid rgba(235, 231, 222, 0.4);
}

.condition-item:hover {
  transform: translateX(5px);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary);
}

.condition-icon {
  color: var(--secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.condition-text {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

@media (max-width: 991px) {
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .conditions-grid {
    grid-template-columns: 1fr;
  }
}

/* --- WHY CHOOSE US & INFO --- */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.info-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.info-image img {
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.info-image:hover img {
  transform: scale(1.05);
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.feature-list-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .info-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- QUOTE DECORATION BLOCK --- */
.quote-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
}

.quote-block::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 15rem;
  font-family: 'Playfair Display', serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.quote-author {
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  position: relative;
  z-index: 2;
}

/* --- ABOUT PAGE SPECIFICS --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: flex-start;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--secondary);
}

.about-card h3 {
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- GALLERY PAGE SPECIFICS --- */
.gallery-filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  background-color: var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 70, 32, 0.9), rgba(30, 70, 32, 0.4));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.gallery-overlay span {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* --- LIGHTBOX POPUP --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 26, 13, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 85%;
  max-height: 85%;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 3px solid var(--secondary);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: -5px;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--secondary);
}

.lightbox-caption {
  color: #ffffff;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
}

/* --- CONTACT US & BOOKING (PHP) --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.branch-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary);
  position: relative;
}

.branch-card.premium-branch {
  border-top-color: var(--secondary);
}

.branch-card .badge {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
}

.branch-title {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.doctor-tag {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--secondary-dark);
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-detail-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.contact-detail-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact-detail-content p, .contact-detail-content a {
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 1rem;
}

/* --- BOOKING FORM --- */
.booking-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--primary);
}

.booking-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.booking-card > p {
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background-color: var(--bg-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(30, 70, 32, 0.1);
}

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

/* --- MAP GRID --- */
.maps-section {
  background-color: var(--bg-white);
}

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.map-card {
  background-color: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.map-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: var(--radius-sm);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .maps-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FOOTER --- */
.footer {
  background-color: var(--bg-footer);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  border-top: 5px solid var(--secondary);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  max-width: 320px;
  filter: brightness(0) invert(1) contrast(0.9);
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links h3, .footer-contact h3 {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
}

.footer-contact-item i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--secondary);
}

.footer-bottom a:hover {
  color: var(--secondary-light);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- ANIMATIONS & KEYFRAMES --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
