@import url('variables.css');

/* ==========================================================================
   1. Reset & Core Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Selection */
::selection {
  background-color: var(--accent);
  color: var(--primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-secondary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.section-padding {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.text-center { text-align: center; }
.accent-text { color: var(--accent-dark); }
.highlight { font-weight: 700; color: var(--primary); }

/* Custom Cursor Effects */
.custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--accent-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-outline {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out, width 0.25s, height 0.25s, border-color 0.25s;
}

/* Cursor Hover states */
body.hovering .custom-cursor {
  width: 12px;
  height: 12px;
  background-color: var(--primary);
}
body.hovering .custom-cursor-outline {
  width: 60px;
  height: 60px;
  border-color: var(--accent);
  background-color: rgba(212, 175, 55, 0.05);
}

@media (max-width: 1024px) {
  .custom-cursor, .custom-cursor-outline {
    display: none !important;
  }
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent) 50%, var(--primary) 100%);
  z-index: 2000;
  width: 0%;
  transition: width 0.1s ease;
}


/* ==========================================================================
   2. Buttons & Calls to Action (CTAs)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg);
  box-shadow: var(--shadow-sm);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.btn-primary:hover {
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.btn-accent:hover {
  color: var(--bg);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover::before {
  opacity: 1;
}

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

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--bg);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  display: inline-flex;
  gap: 8px;
}
.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-call {
  background-color: var(--primary-light);
  color: white;
  display: inline-flex;
  gap: 8px;
}
.btn-call:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 62, 98, 0.3);
}

/* Micro interaction Ripple effect */
.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


/* ==========================================================================
   3. Header Navigation (Glassmorphism)
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 1.5rem 0;
}

header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 0.8rem 0;
}

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

/* Logo Styling */
.logo-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-subtext {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  color: var(--accent-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link:hover {
  color: var(--accent-dark);
}

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

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

/* Actions in Header */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions .btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.825rem;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  position: absolute;
  height: 2.5px;
  width: 100%;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.mobile-toggle span:nth-child(1) { top: 0px; }
.mobile-toggle span:nth-child(2) { top: 10px; }
.mobile-toggle span:nth-child(3) { top: 20px; }

.mobile-toggle.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mobile-toggle.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* Mobile Nav Drawer overlay */
@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--bg);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 7rem 2.5rem 3rem 2.5rem;
    gap: 1.8rem;
    transition: var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-actions {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
}


/* ==========================================================================
   4. Glassmorphism Card System & Sections
   ========================================================================== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  padding: 2.2rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-8px);
  background: var(--glass-bg-hover);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-lg);
}

/* Section Header Typography */
.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
  display: inline-block;
  position: relative;
}

.section-title {
  font-size: 2.35rem;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text);
}


/* ==========================================================================
   5. Lead Capture Systems (Popups, Drawers, Modals)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 25, 44, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background-color: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  width: 100%;
  padding: 2.8rem;
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: var(--transition-normal);
  overflow-y: auto;
  max-height: 90vh;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  transition: var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--accent-light);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 2rem;
}

/* Callback Request Drawer */
.callback-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background-color: var(--bg);
  box-shadow: -15px 0 45px rgba(11, 25, 44, 0.15);
  z-index: 2500;
  transition: var(--transition-normal);
  padding: 3.5rem 2.2rem;
  display: flex;
  flex-direction: column;
}

.callback-drawer.active {
  right: 0;
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

/* General Premium Form Controls */
.form-group {
  margin-bottom: 1.4rem;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--bg-secondary);
  border: 1.5px solid var(--bg-secondary);
  border-radius: var(--radius-xs);
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  background-color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Floating Callback Button */
.callback-floating-btn {
  position: fixed;
  bottom: 120px;
  right: 30px;
  z-index: 999;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg);
  border-radius: var(--radius-full);
  padding: 0.95rem 1.6rem;
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid var(--accent);
}

.callback-floating-btn:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.callback-floating-btn span {
  display: inline-block;
}

@media(max-width: 768px) {
  .callback-floating-btn {
    display: none;
  }
  .callback-drawer {
    width: 100%;
    right: -100%;
  }
}


/* ==========================================================================
   6. Sticky Bottom Toolbar & Floating Elements
   ========================================================================== */
.sticky-float-group {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.float-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: var(--transition-normal);
}

.float-icon:hover {
  transform: scale(1.1) translateY(-5px);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-call {
  background-color: var(--primary-light);
}

.float-back-to-top {
  background-color: var(--text-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  z-index: 997;
  padding: 0.65rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.mobile-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mobile-cta-grid .btn {
  padding: 0.65rem 0.2rem;
  font-size: 0.72rem;
  border-radius: var(--radius-xs);
  letter-spacing: 0px;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
  .sticky-float-group {
    bottom: 80px;
    right: 20px;
  }
  body {
    padding-bottom: 60px; /* offset for sticky bar */
  }
}


/* ==========================================================================
   7. Generic Page Layouts & Elements
   ========================================================================== */

/* Page Banner header */
.page-banner {
  background: linear-gradient(135deg, rgba(11, 25, 44, 0.95) 0%, rgba(30, 62, 98, 0.9) 100%), 
              url('../assets/images/hero.png') center/cover no-repeat;
  padding: 10rem 0 6rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-banner h1 {
  color: white;
  font-size: 3.2rem;
  margin-bottom: 0.8rem;
  letter-spacing: -1px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--accent-light);
}

.breadcrumbs a {
  color: var(--accent-light);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs li.active {
  color: var(--bg-secondary);
}


/* ==========================================================================
   8. Footer Grid & Contact Details
   ========================================================================== */
footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  border-top: 2px solid var(--accent);
  padding-top: 5.5rem;
  padding-bottom: 2rem;
  position: relative;
}

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

.footer-widget-title {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-widget p {
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--accent);
  transition: transform var(--transition-fast);
}

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

.footer-links a:hover::before {
  transform: translateX(3px);
}

/* Contact information list in Footer */
.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact-list svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-list a:hover {
  color: var(--accent);
}

/* Newsletter styling */
.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-xs) 0 0 var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.85rem;
  width: 100%;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  padding: 0 1.2rem;
  background-color: var(--accent);
  color: var(--primary);
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: var(--accent-light);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-normal);
}

.social-icon:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-4px);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

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

@media(max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}


/* ==========================================================================
   9. Page Transitions overlay & Loader
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--transition-normal);
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  text-align: center;
  animation: scale-up-logo 0.8s ease-in-out infinite alternate;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(11, 25, 44, 0.08);
  border-top: 3px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 1.5rem auto 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes scale-up-logo {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; }
}


/* ==========================================================================
   10. Lightbox Modal Gallery
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

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

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-xs);
  display: block;
}

.lightbox-caption {
  color: white;
  font-family: var(--font-heading);
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent);
  transform: scale(1.1);
}
