/* ==========================================================================
   SAINI RAVIKUMAR - PURE METALLIC GOLD EXECUTIVE LIGHT & DARK DESIGN SYSTEM
   ========================================================================== */

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

/* Default Light Theme - Pure Champagne & Metallic Gold (Zero Orange) */
:root, [data-theme="light"] {
  --bg-dark: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-surface: #ffffff;
  
  --gold-primary: #a37e2c;
  --gold-secondary: #c5a059;
  --gold-light: #f5e6a3;
  --gold-dark: #785a16;
  --gold-gradient: linear-gradient(135deg, #8a661c 0%, #c5a059 30%, #f5e6a3 50%, #d4af37 75%, #8a661c 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(245, 230, 163, 0.08));
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-gold: #8a661c;
  
  --border-gold: rgba(197, 160, 89, 0.35);
  --border-gold-bright: rgba(212, 175, 55, 0.8);
  --border-dark: rgba(0, 0, 0, 0.08);
  
  --shadow-gold: 0 10px 25px -5px rgba(197, 160, 89, 0.3);
  --shadow-card: 0 15px 35px rgba(15, 23, 42, 0.06), 0 4px 15px rgba(212, 175, 55, 0.12);

  --nav-bg: rgba(255, 255, 255, 0.94);
  --pill-bg: #f1f5f9;
  --form-bg: #ffffff;
  --footer-bg: #f1f5f9;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Theme Variables Override (Pure Gold, No Orange) */
[data-theme="dark"] {
  --bg-dark: #090b0e;
  --bg-card: rgba(18, 22, 30, 0.75);
  --bg-card-hover: rgba(28, 34, 46, 0.9);
  --bg-surface: #11151c;
  
  --gold-primary: #d4af37;
  --gold-secondary: #c5a059;
  --gold-light: #f5e6a3;
  --gold-dark: #997a15;
  --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(191, 149, 63, 0.15), rgba(253, 246, 186, 0.05));
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #e2c262;
  
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-gold-bright: rgba(212, 175, 55, 0.7);
  --border-dark: rgba(255, 255, 255, 0.08);
  
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.35);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);

  --nav-bg: rgba(9, 11, 14, 0.85);
  --pill-bg: rgba(0, 0, 0, 0.4);
  --form-bg: rgba(0, 0, 0, 0.4);
  --footer-bg: #050709;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(197, 160, 89, 0.06) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-serif {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  padding: 1rem 0;
  transition: var(--transition-fast);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--gold-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Outfit', sans-serif;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

.theme-toggle-btn {
  background: var(--pill-bg);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--gold-gradient);
  color: #ffffff;
  transform: rotate(15deg);
  box-shadow: var(--shadow-gold);
}

.nav-btn {
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(197, 160, 89, 0.45);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 10rem 0 5rem;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.09) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--gold-text);
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.45);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1.5px solid var(--border-gold);
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card), 0 0 40px rgba(212, 175, 55, 0.18);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-portrait-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  padding: 5px;
  background: var(--gold-gradient);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.35);
  transition: var(--transition-fast);
}

.hero-portrait-wrapper:hover {
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.55);
  transform: scale(1.03);
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--bg-card);
  background: var(--bg-card);
}

.hero-portrait-emblem {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gold-gradient);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.hero-portrait-emblem img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-frame-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.hero-frame-tag {
  color: var(--gold-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.quick-contact-pill {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--pill-bg);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-item:hover {
  color: var(--gold-primary);
}

.contact-item i {
  color: var(--gold-primary);
  font-size: 1.1rem;
  width: 24px;
}

/* Stats Counter Section */
.stats-section {
  padding: 3rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card), 0 0 25px rgba(212, 175, 55, 0.25);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* General Section Styling */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-tag {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: var(--gold-gradient);
  box-shadow: var(--shadow-card), 0 0 40px rgba(212, 175, 55, 0.2);
}

.about-image-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  border-radius: calc(var(--radius-lg) - 4px);
  display: block;
}

.about-badge-overlay {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold-bright);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-card);
}

.about-item i {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.about-item h4 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.about-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Category Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  color: var(--text-muted);
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold-bright);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12), 0 0 25px rgba(212, 175, 55, 0.2);
  background: var(--bg-card-hover);
}

.portfolio-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 54px;
  height: 54px;
  background: rgba(197, 160, 89, 0.12);
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.portfolio-card:hover .card-icon {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
}

.card-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text-main);
  line-height: 1.3;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card-role-tag {
  background: var(--gold-gradient-subtle);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  color: var(--gold-text);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

/* Sports Leadership Banner Section */
.banner-section {
  background: var(--bg-card);
  border-top: 1.5px solid var(--border-gold);
  border-bottom: 1.5px solid var(--border-gold);
  padding: 5rem 0;
  position: relative;
  box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.05);
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.banner-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.banner-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.banner-highlight-box {
  background: var(--bg-dark);
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-card);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  background: rgba(197, 160, 89, 0.12);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.highlight-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Gallery Section */
.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.75rem !important;
  width: 100% !important;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }
}

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

.gallery-card {
  position: relative !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
  border: 1.5px solid var(--border-gold) !important;
  box-shadow: var(--shadow-card) !important;
  height: 260px !important;
  width: 100% !important;
  background: var(--bg-card) !important;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
  cursor: pointer !important;
}

.gallery-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--border-gold-bright) !important;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25) !important;
}

.gallery-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.5s ease !important;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
  transition: var(--transition-fast);
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--gold-light);
}

.gallery-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card), 0 0 25px rgba(212, 175, 55, 0.25);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card, .contact-form-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

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

.contact-icon-box {
  width: 50px;
  height: 50px;
  background: var(--gold-gradient-subtle);
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.contact-detail-text p, .contact-detail-text a {
  color: var(--text-main);
  font-size: 1.05rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.contact-detail-text a:hover {
  color: var(--gold-primary);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: var(--form-bg);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

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

/* Footer */
.footer {
  background: var(--footer-bg);
  border-top: 1.5px solid var(--border-gold);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating Quick Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.float-btn.call {
  background: var(--gold-gradient);
  color: #ffffff;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

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

.modal-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(212, 175, 55, 0.25);
  transform: translateY(20px);
  transition: var(--transition-fast);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--gold-primary);
}

/* Lightbox Image Preview Modal */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 11, 14, 0.94);
  backdrop-filter: blur(16px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  padding: 1.5rem;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-container {
  position: relative;
  max-width: 1000px;
  width: 95%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.94);
  transition: var(--transition-fast);
}

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

.lightbox-container img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-gold-bright);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.3);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--border-gold);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--gold-primary);
  color: #ffffff;
  transform: scale(1.1);
}

.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
  color: #ffffff;
}

.lightbox-caption h4 {
  font-size: 1.25rem;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.lightbox-caption p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-text {
    order: 1;
  }
  
  .hero-description {
    margin: 0 auto 2.5rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .banner-grid, .contact-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-gold);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-card);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.4rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top, .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
