/* 
  ==================================================================
  ASIB RATUL - PORTFOLIO STYLESHEET
  Design System: Luxury Navy, Midnight Black, Pure White, Vibrant Orange
  No Frameworks - Pure Modern Vanilla CSS
  ==================================================================
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- CSS CUSTOM VARIABLES / THEME SYSTEM --- */
:root {
  /* Common Brand Tokens */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --color-orange: #FF5E1E;
  --color-orange-glow: rgba(255, 94, 30, 0.35);
  --color-orange-light: #FF7D47;
  --color-orange-subtle: rgba(255, 94, 30, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1240px;
}

/* --- DARK MODE TOKENS (DEFAULT) --- */
[data-theme="dark"] {
  --bg-page: #080C16;
  --bg-surface: #0E1626;
  --bg-surface-elevated: #141E33;
  --bg-card: rgba(18, 27, 44, 0.7);
  --bg-card-hover: rgba(26, 39, 63, 0.85);
  
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 94, 30, 0.4);
  
  --navy-deep: #0A1128;
  --navy-accent: #1E293B;
  
  --glass-bg: rgba(14, 22, 38, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(255, 94, 30, 0.2);

  --grid-pattern: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

/* --- LIGHT MODE TOKENS --- */
[data-theme="light"] {
  --bg-page: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #F1F5F9;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: #FFFFFF;
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  
  --border-color: rgba(15, 23, 42, 0.08);
  --border-color-hover: rgba(255, 94, 30, 0.4);
  
  --navy-deep: #0F172A;
  --navy-accent: #E2E8F0;
  
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(15, 23, 42, 0.08);
  
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 16px 36px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 35px rgba(255, 94, 30, 0.18);

  --grid-pattern: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  background-image: var(--grid-pattern);
  background-size: 32px 32px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* Section Header Component */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background-color: var(--color-orange-subtle);
  color: var(--color-orange);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 94, 30, 0.2);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 650px;
  margin-bottom: 3.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--color-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.orange-accent {
  color: var(--color-orange);
}

/* --- NAVIGATION BAR --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
}

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

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

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--color-orange);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme Toggle Switch */
.theme-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.theme-toggle-btn:hover {
  border-color: var(--color-orange);
  transform: translateY(-2px);
  color: var(--color-orange);
}

.theme-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition-normal);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  align-items: center;
  justify-content: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(255, 94, 30, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-orange-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 94, 30, 0.5);
}

.btn-secondary {
  background-color: var(--bg-surface-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-3px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  padding-top: 8.5rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22C55E;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #22C55E;
  border-radius: 50%;
  animation: pulse-ring 1.8s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Image Card Frame */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1.12;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  background: var(--bg-surface);
  transition: transform var(--transition-normal);
}

.hero-image-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-hover);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-smooth);
}

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

/* Floating Glass Overlay Badge */
.hero-floating-card {
  position: absolute;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.card-top-right {
  top: -18px;
  right: -15px;
}

.card-bottom-left {
  bottom: -22px;
  left: -20px;
  animation-delay: 2s;
}

/* Hero Social Buttons Row */
.hero-socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: -1rem;
  margin-bottom: 2.5rem;
}

.hero-socials-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 0.2rem;
}

.hero-social-btn {
  width: 42px;
  height: 42px;
}

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

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--color-orange-subtle);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.badge-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-orange);
  color: #FFFFFF;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
}

.about-experience-badge h4 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.about-experience-badge p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.2rem;
}

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.info-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.info-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--color-orange-subtle);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.info-card p {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* --- TECHNICAL & SOFT SKILLS --- */
.skills-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--color-orange);
  color: #FFFFFF;
  border-color: var(--color-orange);
  box-shadow: 0 4px 15px rgba(255, 94, 30, 0.3);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.skill-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.skill-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.skill-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-orange);
}

.skill-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.skill-level-text {
  font-size: 0.85rem;
  color: var(--color-orange);
  font-weight: 700;
}

.skill-progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 0.8rem;
  border: 1px solid var(--border-color);
}

.skill-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light));
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- FOOTBALL & PASSION HIGHLIGHT --- */
.football-section {
  background: linear-gradient(135deg, rgba(10, 17, 40, 0.95), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

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

.football-content h3 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.football-content p {
  color: #94A3B8;
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.sports-stats-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.sport-stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.sport-stat-card h4 {
  font-size: 1.6rem;
  color: var(--color-orange);
  font-weight: 800;
}

.sport-stat-card p {
  font-size: 0.85rem;
  color: #CBD5E1;
  margin-bottom: 0;
}

.football-image-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--color-orange);
  box-shadow: 0 0 30px rgba(255, 94, 30, 0.3);
  max-height: 380px;
}

.football-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- PROJECTS SECTION --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.project-card {
  border-radius: var(--radius-lg);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-md);
}

.project-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-surface);
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.06);
}

.project-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--color-orange);
  border: 1px solid var(--border-color);
}

.project-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.project-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.project-link:hover {
  color: var(--color-orange-light);
  gap: 0.6rem;
}

/* --- CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.contact-item:hover {
  border-color: var(--color-orange);
  transform: translateX(6px);
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-orange-subtle);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.contact-text h5 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.contact-text a, .contact-text p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-socials-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.2rem;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--color-orange);
  color: #FFFFFF;
  border-color: var(--color-orange);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(255, 94, 30, 0.4);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Contact Form */
.contact-form-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

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

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

.form-input, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px var(--color-orange-subtle);
}

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

/* Form status notification */
.form-status {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(34, 197, 94, 0.15);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* --- FOOTER --- */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  background: var(--bg-surface);
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .football-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-image-wrapper {
    margin-top: 1rem;
  }

  .hero-floating-card.card-bottom-left {
    left: 0;
  }

  .hero-floating-card.card-top-right {
    right: 0;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-surface-elevated);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: right var(--transition-normal);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-nav-toggle {
    display: flex;
  }

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

  .sports-stats-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.5rem 0;
  }

  .football-section {
    padding: 2.5rem 1.5rem;
  }

  .contact-form-card {
    padding: 1.8rem;
  }
}
