/* =============================================
   TRAVELGULLY GALLERY - COMPLETE CSS
   Version: 2.0
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --primary-light: #ff8c5a;
  --primary-glow: rgba(255, 107, 53, 0.3);
  --secondary: #004e89;
  --secondary-dark: #003a68;
  --secondary-light: #0066b3;
  --accent: #ffd166;
  --dark: #0f0f23;
  --darker: #0a0a1a;
  --dark-card: #1a1a35;
  --dark-border: #2a2a4a;

  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --white: #ffffff;

  --instagram: #E1306C;
  --instagram-start: #f09433;
  --instagram-mid: #dc2743;
  --instagram-end: #bc1888;
  --instagram-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --facebook: #1877F2;
  --facebook-dark: #1565c0;
  --whatsapp: #25D366;
  --youtube: #FF0000;
  --twitter: #1DA1F2;

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.15);

  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  --radius-circle: 50%;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: all 0.3s var(--ease);
  --transition-slow: all 0.5s var(--ease);
  --transition-fast: all 0.15s var(--ease);

  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  --container-max: 1320px;
  --container-narrow: 900px;
  --navbar-height: 72px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--navbar-height);
}

body.gallery-page {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  background: none;
}

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ---- Gradient Texts ---- */
.gradient-text {
  background: var(--instagram-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-blue {
  background: linear-gradient(135deg, var(--facebook), #64b5f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-fire {
  background: linear-gradient(135deg, #ff0050, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Animation Utilities ---- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease) forwards;
}

.animate-fade-down {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 0.8s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   PRELOADER
   ================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  width: 200px;
}

.preloader-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.preloader-globe {
  font-size: 50px;
  animation: spin 3s linear infinite;
}

.preloader-camera {
  position: absolute;
  bottom: -5px;
  right: -5px;
  font-size: 28px;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 100%;
  height: 3px;
  background: var(--dark-border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--instagram-gradient);
  border-radius: 3px;
  animation: preloaderFill 2s var(--ease) forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

.preloader-text {
  color: var(--gray-500);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 30px var(--primary-glow);
}

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  z-index: 9990;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.whatsapp-float .whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  animation: ripple 2s ease-in-out infinite;
  z-index: -1;
}

.whatsapp-float i { font-size: 22px; }

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.logo-globe {
  font-size: 30px;
  animation: spin 12s linear infinite;
}

.logo-text {
  font-family: var(--font-heading);
}

.logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-links a i { font-size: 11px; opacity: 0.7; }

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
  color: var(--white);
  background: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-phone i { color: var(--primary); }

.nav-phone:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--primary);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10001;
}

.toggle-bar {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active .toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active .toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 15, 35, 0.88) 0%,
    rgba(0, 78, 137, 0.55) 40%,
    rgba(255, 107, 53, 0.25) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.25);
  color: var(--accent);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge i { font-size: 16px; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(50px, 9vw, 100px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-title-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-subtitle {
  font-size: clamp(15px, 2.2vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--white);
  transition: var(--transition);
}

.hero-social-btn div {
  text-align: left;
}

.hero-social-btn strong {
  display: block;
  font-size: 14px;
}

.hero-social-btn small {
  font-size: 11px;
  opacity: 0.8;
  font-weight: 400;
}

.hero-social-btn i { font-size: 22px; }

.instagram-btn {
  background: var(--instagram-gradient);
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.35);
}

.facebook-btn {
  background: var(--facebook);
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.35);
}

.hero-social-btn:hover {
  transform: translateY(-4px) scale(1.02);
}

.instagram-btn:hover {
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5);
}

.facebook-btn:hover {
  box-shadow: 0 8px 30px rgba(24, 119, 242, 0.5);
}

/* Hero Quick Stats */
.hero-quick-stats {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 32px;
  border-radius: var(--radius-full);
}

.quick-stat {
  text-align: center;
}

.quick-stat strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.quick-stat span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quick-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator span {
  display: block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 11px;
  margin: 0 auto 6px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--primary);
  border-radius: 3px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

.scroll-arrow {
  font-size: 12px;
  animation: scrollArrow 1.5s ease-in-out infinite;
}

@keyframes scrollArrow {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(5px); opacity: 0.8; }
}

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  padding-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-xl);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-card:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.instagram-gradient {
  background: var(--instagram-gradient);
  color: var(--white);
}

.facebook-bg {
  background: var(--facebook);
  color: var(--white);
}

.orange-bg {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.red-bg {
  background: linear-gradient(135deg, #ff0050, #ff4081);
  color: var(--white);
}

.stat-info {
  min-width: 0;
}

.stat-number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.stat-info span {
  font-size: 12px;
  color: var(--gray-600);
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header.light .section-title {
  color: var(--white);
}

.section-header.light .section-subtitle {
  color: var(--gray-400);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  animation: livePulse 1.5s ease-in-out infinite;
}

.live-dot.blue { background: var(--facebook); }
.live-dot.red { background: #ff0050; }

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
}

.instagram-badge {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(255, 107, 53, 0.1));
  color: var(--instagram);
  border: 1px solid rgba(225, 48, 108, 0.15);
}

.facebook-badge {
  background: rgba(24, 119, 242, 0.08);
  color: var(--facebook);
  border: 1px solid rgba(24, 119, 242, 0.15);
}

.reels-badge {
  background: rgba(255, 0, 80, 0.1);
  color: #ff0050;
  border: 1px solid rgba(255, 0, 80, 0.15);
}

.destination-badge {
  background: rgba(0, 78, 137, 0.08);
  color: var(--secondary);
  border: 1px solid rgba(0, 78, 137, 0.15);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* Follow Buttons */
.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.instagram-follow { background: var(--instagram-gradient); }
.facebook-follow { background: var(--facebook); }

.follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: none;
}

.follow-btn:hover .btn-shine,
.load-more-btn:hover .btn-shine {
  left: 100%;
  transition: left 0.6s ease;
}

/* ================================================
   API STATUS INDICATOR
   ================================================ */
.api-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--gray-500);
  transition: var(--transition);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: var(--transition);
}

.status-dot.connecting {
  background: var(--accent);
  animation: livePulse 1s ease-in-out infinite;
}

.status-dot.connected {
  background: #4caf50;
}

.status-dot.fallback {
  background: var(--primary);
}

.status-dot.error {
  background: #f44336;
}

/* ================================================
   FEED FILTERS
   ================================================ */
.feed-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--instagram);
  color: var(--instagram);
  background: rgba(225, 48, 108, 0.05);
}

.filter-btn.active {
  background: var(--instagram-gradient);
  color: var(--white);
  border-color: transparent;
}

/* ================================================
   SKELETON LOADING
   ================================================ */
.feed-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.feed-skeleton-grid.facebook-skeleton {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

.skeleton-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.skeleton-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
}

.skeleton-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-lines {
  flex: 1;
}

.skeleton-line {
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 6px;
}

.skeleton-line.short { width: 60%; }

.skeleton-image {
  width: 100%;
  padding-top: 100%;
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-image.wide { padding-top: 56%; }

.skeleton-body {
  padding: 14px;
}

.skeleton-footer {
  padding: 10px 14px;
  border-top: 1px solid var(--gray-200);
}

/* ================================================
   INSTAGRAM SECTION
   ================================================ */
.instagram-section {
  background: var(--gray-50);
}

.instagram-grid {
  min-height: 300px;
}

.instagram-grid .feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Instagram Post Card */
.insta-post {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  opacity: 0;
  animation: slideInUp 0.6s var(--ease) forwards;
}

.insta-post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(225, 48, 108, 0.2);
}

.insta-post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}

.insta-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--instagram-gradient);
  padding: 2px;
  flex-shrink: 0;
}

.insta-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
}

.insta-user-info { flex: 1; min-width: 0; }

.insta-user-info strong {
  font-size: 13px;
  color: var(--dark);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.insta-user-info span {
  font-size: 11px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}

.insta-post-header .fa-instagram {
  color: var(--instagram);
  font-size: 18px;
  flex-shrink: 0;
}

.insta-media {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
}

.insta-media img,
.insta-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.insta-post:hover .insta-media img,
.insta-post:hover .insta-media video {
  transform: scale(1.05);
}

.insta-type-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(6px);
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.insta-body { padding: 12px 14px; }

.insta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.insta-action-btn {
  font-size: 20px;
  color: var(--gray-800);
  padding: 0;
  transition: var(--transition);
}

.insta-action-btn:hover { transform: scale(1.15); }

.insta-action-btn.liked { color: #ed4956; }
.insta-action-btn.liked i { font-weight: 900; }

.insta-action-btn.save { margin-left: auto; }

.insta-likes {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.insta-caption {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insta-caption strong {
  color: var(--dark);
  margin-right: 4px;
}

.insta-time {
  font-size: 10px;
  color: var(--gray-500);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.insta-post-footer {
  padding: 10px 14px;
  border-top: 1px solid var(--gray-100);
  text-align: center;
}

.insta-post-footer a {
  font-size: 12px;
  font-weight: 600;
  color: var(--instagram);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.insta-post-footer a:hover { opacity: 0.8; }

/* Feature CTA */
.feature-cta {
  margin-top: 48px;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.instagram-cta {
  background: var(--instagram-gradient);
}

.feature-cta-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.feature-cta-content { position: relative; z-index: 2; }

.feature-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}

.feature-cta h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 8px;
}

.feature-cta p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.feature-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--instagram);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
}

.feature-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ================================================
   FACEBOOK SECTION
   ================================================ */
.facebook-section {
  background: var(--white);
}

.facebook-grid .feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

/* Facebook Post Card */
.fb-post {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  opacity: 0;
  animation: slideInUp 0.6s var(--ease) forwards;
}

.fb-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(24, 119, 242, 0.2);
}

.fb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.fb-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--facebook);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.fb-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fb-user { flex: 1; }

.fb-user strong {
  font-size: 14px;
  color: var(--dark);
  display: block;
}

.fb-user span {
  font-size: 12px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}

.fb-header .fa-facebook { color: var(--facebook); font-size: 20px; }

.fb-text {
  padding: 0 16px 12px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
  white-space: pre-line;
}

.fb-media {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: var(--gray-100);
}

.fb-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.fb-post:hover .fb-media img { transform: scale(1.03); }

.fb-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--gray-500);
}

.fb-stats .fb-likes {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fb-stats .fb-likes i { color: var(--facebook); }

.fb-actions-row {
  display: flex;
  border-top: 1px solid var(--gray-200);
}

.fb-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}

.fb-action:hover {
  background: var(--gray-50);
  color: var(--facebook);
}

/* ================================================
   REELS SECTION
   ================================================ */
.reels-section {
  background: var(--dark);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  min-height: 200px;
}

.reel-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9/16;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  animation: slideInUp 0.6s var(--ease) forwards;
}

.reel-card:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.reel-play i {
  color: var(--white);
  font-size: 18px;
  margin-left: 3px;
}

.reel-card:hover .reel-play {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.15);
}

.reel-info h4 {
  color: var(--white);
  font-size: 13px;
  margin-bottom: 4px;
  line-height: 1.3;
}

.reel-info .reel-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.reel-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 0, 80, 0.85);
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--radius-xs);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reel-views {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}

/* ================================================
   DESTINATION MASONRY GALLERY
   ================================================ */
.destination-section {
  background: var(--gray-50);
}

.dest-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.dest-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.dest-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.dest-btn.active {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

/* Masonry Grid */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.masonry-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.masonry-item.size-large {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-item.size-tall {
  grid-row: span 2;
}

.masonry-item.size-wide {
  grid-column: span 2;
}

.masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.masonry-item:hover img {
  transform: scale(1.08);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-content { flex: 1; }

.masonry-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.masonry-badge.trending {
  background: linear-gradient(135deg, #ff0050, var(--primary));
}

.masonry-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-bottom: 4px;
}

.masonry-content h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.masonry-stats {
  display: flex;
  gap: 14px;
}

.masonry-stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.masonry-zoom {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.8);
}

.masonry-item:hover .masonry-zoom {
  opacity: 1;
  transform: scale(1);
}

.masonry-zoom:hover {
  background: var(--primary);
}

/* Load More */
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  background: var(--secondary);
  color: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.load-more-btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 78, 137, 0.3);
}

.load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ================================================
   SUBMIT SECTION
   ================================================ */
.submit-section {
  background: var(--white);
}

.submit-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  border: 2px dashed var(--gray-300);
  position: relative;
  overflow: hidden;
}

.submit-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.submit-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.submit-circle.c1 {
  width: 200px;
  height: 200px;
  background: var(--instagram-gradient);
  top: -60px;
  right: -40px;
}

.submit-circle.c2 {
  width: 150px;
  height: 150px;
  background: var(--facebook);
  bottom: -40px;
  left: -30px;
}

.submit-circle.c3 {
  width: 100px;
  height: 100px;
  background: var(--primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.submit-icon-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.submit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--instagram-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: float 3s ease-in-out infinite;
}

.submit-icon i {
  font-size: 32px;
  color: var(--white);
}

.submit-card h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.submit-card > p {
  color: var(--gray-600);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.submit-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.submit-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  text-align: left;
}

.submit-method:hover {
  transform: translateX(8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.method-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.submit-method.instagram .method-icon { background: var(--instagram-gradient); }
.submit-method.facebook .method-icon { background: var(--facebook); }
.submit-method.whatsapp .method-icon { background: var(--whatsapp); }
.submit-method.email .method-icon { background: var(--primary); }

.method-info { flex: 1; }

.method-info strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
}

.method-info span {
  font-size: 12px;
  color: var(--gray-500);
}

.method-arrow {
  color: var(--gray-400);
  transition: var(--transition);
}

.submit-method:hover .method-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

.submit-hashtag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.submit-hashtag strong { color: var(--primary); }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 15, 35, 0.92), rgba(0, 78, 137, 0.8));
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary,
.cta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.cta-btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.cta-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.cta-btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.cta-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  position: relative;
  background: var(--darker);
  color: var(--white);
}

.footer-wave {
  position: relative;
  margin-bottom: -2px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
  color: var(--darker);
}

.footer-main { padding: 60px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-logo-icon { font-size: 28px; }

.footer-logo .accent { color: var(--primary); }

.footer-brand p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  transition: var(--transition);
}

.social-link.instagram { background: var(--instagram-gradient); }
.social-link.facebook { background: var(--facebook); }
.social-link.whatsapp { background: var(--whatsapp); }
.social-link.youtube { background: var(--youtube); }

.social-link:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-md);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul a {
  color: var(--gray-500);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul a i { font-size: 8px; color: var(--primary); }

.footer-col ul a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px !important;
}

.footer-contact-list li > i {
  color: var(--primary);
  font-size: 14px;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-list li div {
  display: flex;
  flex-direction: column;
}

.footer-contact-list a {
  color: var(--gray-400) !important;
}

.footer-contact-list a:hover {
  color: var(--primary) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--gray-600);
  font-size: 13px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.footer-legal-links a {
  color: var(--gray-600);
}

.footer-legal-links a:hover { color: var(--primary); }

.footer-legal-links span { color: var(--gray-700); }

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1200px) {
  .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 20px;
    z-index: 9999;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 18px;
    padding: 14px 36px;
  }

  .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .masonry-item.size-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .masonry-item.size-tall { grid-row: span 2; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .hero-socials { flex-direction: column; align-items: center; }

  .hero-quick-stats {
    flex-direction: row;
    padding: 14px 24px;
    gap: 16px;
  }

  .quick-stat strong { font-size: 18px; }
  .quick-stat span { font-size: 10px; }

  .stats-grid { grid-template-columns: 1fr 1fr; padding: 20px; gap: 12px; }

  .stat-icon { width: 44px; height: 44px; font-size: 18px; }
  .stat-number { font-size: 18px; }

  .instagram-grid .feed-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .facebook-grid .feed-grid { grid-template-columns: 1fr; }
  .feed-skeleton-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-skeleton-grid.facebook-skeleton { grid-template-columns: 1fr; }

  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }

  .masonry-item.size-large,
  .masonry-item.size-wide {
    grid-column: span 2;
  }

  .masonry-item.size-tall { grid-row: span 2; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-col ul a { justify-content: center; }
  .footer-social-links { justify-content: center; }
  .footer-contact-list li { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }

  .instagram-grid .feed-grid { grid-template-columns: 1fr; }
  .feed-skeleton-grid { grid-template-columns: 1fr; }

  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .masonry-item.size-large,
  .masonry-item.size-wide,
  .masonry-item.size-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-title { font-size: 44px; }

  .hero-quick-stats { padding: 12px 20px; gap: 12px; }

  .whatsapp-float .whatsapp-label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }

  .submit-card { padding: 32px 20px; }
}