/* ==========================================================================
   FRANCHELY ZABALA - COMMUNITY MANAGER & CREATIVE CONTENT
   Design System & Master Stylesheet
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --color-bg-base: #FAF8F5;
  --color-bg-warm: #F6F1EA;
  --color-bg-alt: #F3EEF9;
  --color-white: #FFFFFF;
  
  --color-lavender-50: #FAF7FD;
  --color-lavender-100: #F1E9F8;
  --color-lavender-200: #E3D4F2;
  --color-lavender-300: #CBB4E5;
  --color-lavender-400: #A98EC9;
  --color-lavender-500: #9376B5;
  --color-lavender-600: #7E629F;
  --color-lavender-700: #624B7F;
  --color-lavender-footer: #DCD2EA;
  --color-lavender-footer-deep: #C9B8DE;
  
  --color-text-title: #282130;
  --color-text-body: #5A5263;
  --color-text-muted: #83798E;
  --color-border-subtle: rgba(147, 118, 181, 0.18);
  --color-border-strong: rgba(147, 118, 181, 0.35);

  /* Typography - High-end Editorial System */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-display: 'Italiana', 'Cormorant Garamond', serif;
  --font-script: 'Caveat', 'Dancing Script', cursive;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(40, 33, 48, 0.04);
  --shadow-md: 0 8px 24px rgba(40, 33, 48, 0.07);
  --shadow-lg: 0 16px 36px rgba(40, 33, 48, 0.09);
  --shadow-polaroid: 0 12px 28px rgba(58, 43, 76, 0.12);
  --shadow-phone: 0 24px 48px -12px rgba(50, 35, 68, 0.22);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
}

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

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

body {
  background-color: var(--color-bg-base);
  color: var(--color-text-body);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

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

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

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

/* --- Ambient Atmospheric Glows --- */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
}

.glow-top {
  top: -100px;
  right: -50px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--color-lavender-200), transparent 70%);
}

.glow-middle {
  top: 45%;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #EAE0F5, transparent 70%);
}

.glow-bottom {
  bottom: 10%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-lavender-300), transparent 70%);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(147, 118, 181, 0.1);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background-color: rgba(250, 248, 245, 0.98);
  box-shadow: 0 4px 24px rgba(54, 40, 72, 0.06);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Luxury Editorial Brand Lockup */
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.navbar-brand:hover {
  transform: translateY(-1px);
}

.brand-monogram-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F4EFF9 0%, #E6DAF2 100%);
  border: 1px solid rgba(156, 134, 184, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(122, 98, 150, 0.12);
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
  flex-shrink: 0;
}

.navbar-brand:hover .brand-monogram-circle {
  transform: rotate(-5deg) scale(1.06);
  box-shadow: 0 6px 16px rgba(122, 98, 150, 0.2);
}

.monogram-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--color-text-title);
  transition: color var(--transition-fast);
}

.navbar-brand:hover .brand-name-title {
  color: #6C5782;
}

.brand-tagline {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #8C7A9E;
  text-transform: uppercase;
}

/* Menu Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--color-text-title);
  position: relative;
  padding: 0.4rem 0;
  opacity: 0.85;
}

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

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--color-lavender-700);
}

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

/* CTA & Actions in Nav */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Language Switcher */
.lang-switch-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(198, 185, 214, 0.22);
  border: 1px solid rgba(156, 134, 184, 0.28);
  border-radius: var(--radius-pill);
  padding: 3px 6px;
  gap: 2px;
}

.lang-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #6C5782;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: #362848;
}

.lang-btn.active {
  background: #FFFFFF;
  color: #553E6F;
  box-shadow: 0 2px 6px rgba(75, 45, 105, 0.14);
}

.lang-divider {
  font-size: 0.65rem;
  color: #A999BD;
  user-select: none;
}

.btn-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #9C86B8;
  color: var(--color-white);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 14px rgba(156, 134, 184, 0.35);
  transition: all var(--transition-fast);
}

.btn-cta-pill:hover {
  background-color: #876EA6;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(156, 134, 184, 0.45);
}

.btn-arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-cta-pill:hover .btn-arrow-icon {
  transform: translate(2px, -2px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  z-index: 110;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-text-title);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 3rem 2rem 5rem;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 4rem;
  position: relative;
}

/* Hero Left Column */
.hero-left {
  position: relative;
  z-index: 2;
}

/* Handwritten Sticker on the left */
.handwritten-sticker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-script);
  font-size: 1.45rem;
  line-height: 1.25;
  color: #79668F;
  pointer-events: none;
  user-select: none;
}

.sticker-left {
  position: absolute;
  top: -2.8rem;
  left: -1.5rem;
  transform: rotate(-10deg);
  opacity: 0.92;
}

.sticker-heart {
  width: 22px;
  height: 22px;
  margin-top: 4px;
  color: #8C75A3;
  transform: rotate(-6deg);
}

.hero-intro {
  margin-top: 2rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: #8C75A3;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 500;
  line-height: 0.98;
  color: var(--color-text-title);
  letter-spacing: -1px;
  margin-bottom: 1.4rem;
  position: relative;
}

.sparkle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #9D88B7;
  vertical-align: middle;
  margin-left: 0.5rem;
  animation: pulse-sparkle 3s ease-in-out infinite;
}

.sparkle-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes pulse-sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
  50% { transform: scale(1.18) rotate(12deg); opacity: 1; }
}

.hero-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  color: #6C5782;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--color-text-body);
  max-width: 480px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #9C86B8;
  color: var(--color-white);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  box-shadow: 0 6px 18px rgba(156, 134, 184, 0.35);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  background-color: #876EA6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(156, 134, 184, 0.45);
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: var(--color-text-title);
  border: 1.5px solid #C4B5D6;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background-color: #EDE7F6;
  border-color: #9C86B8;
  color: #553E6F;
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO RIGHT: COLLAGE WITH IPHONE & POLAROIDS
   ========================================================================== */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-collage {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-height: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* iPhone Mockup Frame */
/* ==========================================================================
   HYPER-REALISTIC IPHONE & INSTAGRAM PROFILE MOCKUP
   ========================================================================== */
.iphone-mockup {
  position: relative;
  z-index: 10;
  width: 295px;
  height: 590px;
  background: #1D1A22;
  border-radius: 48px;
  padding: 10px;
  box-shadow: 0 25px 60px -15px rgba(35, 20, 50, 0.35), 0 0 0 2.5px #3A3245, inset 0 0 4px rgba(255,255,255,0.15);
  transition: transform var(--transition-normal);
}

.iphone-mockup:hover {
  transform: translateY(-6px);
}

/* Side Buttons */
.iphone-button-silent {
  position: absolute;
  left: -4px;
  top: 95px;
  width: 3px;
  height: 24px;
  background: #2D2736;
  border-radius: 2px 0 0 2px;
}

.iphone-button-vol-up {
  position: absolute;
  left: -4px;
  top: 135px;
  width: 3px;
  height: 42px;
  background: #2D2736;
  border-radius: 2px 0 0 2px;
}

.iphone-button-vol-down {
  position: absolute;
  left: -4px;
  top: 185px;
  width: 3px;
  height: 42px;
  background: #2D2736;
  border-radius: 2px 0 0 2px;
}

.iphone-button-power {
  position: absolute;
  right: -4px;
  top: 145px;
  width: 3px;
  height: 58px;
  background: #2D2736;
  border-radius: 0 2px 2px 0;
}

.iphone-bezel {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Dynamic Island */
.iphone-dynamic-island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 22px;
  background: #000000;
  border-radius: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
}

.camera-lens {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0F1626;
  border: 1px solid rgba(255,255,255,0.08);
}

.iphone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
  background: #FFFFFF;
  color: #262626;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  user-select: none;
}

.iphone-screen::-webkit-scrollbar {
  display: none;
}

/* 1. iOS Status Bar */
.ios-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #000000;
  z-index: 40;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ios-icon {
  width: 13px;
  height: 11px;
}

.battery-wrap {
  display: flex;
  align-items: center;
  gap: 3px;
}

.battery-pct {
  font-size: 0.65rem;
  font-weight: 600;
}

.battery-outline {
  width: 18px;
  height: 9px;
  border: 1px solid #000000;
  border-radius: 2.5px;
  padding: 1px;
  display: flex;
  align-items: center;
}

.battery-fill {
  height: 100%;
  background: #000000;
  border-radius: 1px;
}

/* 2. Instagram Top Nav */
.ig-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px 8px;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
}

.ig-user-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ig-username-bold {
  font-size: 0.95rem;
  font-weight: 700;
  color: #262626;
  letter-spacing: -0.2px;
}

.ig-chevron-down {
  width: 10px;
  height: 10px;
  stroke-width: 2.5;
}

.ig-top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ig-nav-icon {
  width: 19px;
  height: 19px;
  color: #262626;
  cursor: pointer;
}

/* 3. Profile Header (Avatar & Stats) */
.ig-profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 8px;
}

/* Instagram Story Gradient Ring */
.ig-avatar-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
  padding: 2.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ig-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #FFFFFF;
  padding: 2px;
  overflow: hidden;
}

.ig-real-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #F4EFF9;
}

.ig-stats-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 8px;
}

.ig-stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 0.92rem;
  font-weight: 700;
  color: #262626;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.68rem;
  color: #262626;
  font-weight: 400;
}

/* 4. Bio Section */
.ig-bio-section {
  padding: 2px 14px 10px;
  font-size: 0.74rem;
  line-height: 1.35;
  color: #262626;
}

.bio-display-name {
  font-weight: 700;
  font-size: 0.78rem;
  color: #262626;
  margin-bottom: 2px;
}

.bio-category {
  color: #737373;
  font-size: 0.7rem;
  margin-bottom: 3px;
}

.bio-text {
  color: #262626;
  margin-bottom: 4px;
}

.bio-text strong {
  font-weight: 600;
}

.bio-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #00376B;
  font-weight: 600;
  font-size: 0.72rem;
  margin-bottom: 6px;
}

.link-icon {
  width: 11px;
  height: 11px;
}

/* Mutual Followers */
.ig-mutuals-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  color: #737373;
  margin-bottom: 8px;
  line-height: 1.25;
}

.mutuals-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mutual-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  margin-right: -4px;
  object-fit: cover;
}

/* 5. Profile Action Buttons */
.ig-action-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px 10px;
}

.ig-btn {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 0;
  border-radius: 7px;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}

.ig-btn:hover {
  transform: translateY(-1px);
}

.ig-btn-primary {
  flex: 1.3;
  background: #9C86B8;
  color: #FFFFFF;
}

.ig-btn-secondary {
  flex: 1.2;
  background: #EFEFEF;
  color: #000000;
}

.ig-btn-icon {
  width: 28px;
  height: 28px;
  background: #EFEFEF;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ig-btn-icon svg {
  width: 14px;
  height: 14px;
}

/* 6. Story Highlights */
.ig-highlights-scroll {
  display: flex;
  gap: 12px;
  padding: 0 14px 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ig-highlights-scroll::-webkit-scrollbar {
  display: none;
}

.ig-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.ig-highlight-item:hover {
  transform: scale(1.05);
}

.highlight-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #E0D7EA;
  padding: 2.5px;
  background: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #F4EFF9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6C5782;
}

.highlight-icon-svg {
  width: 20px;
  height: 20px;
}

.highlight-title {
  font-size: 0.65rem;
  font-weight: 500;
  color: #262626;
  max-width: 56px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

/* Simulated Instagram interactive hover hint */
.iphone-screen {
  cursor: pointer;
}

.ig-clickable-banner {
  margin: 0 14px 8px;
  background: linear-gradient(135deg, rgba(156, 134, 184, 0.12), rgba(244, 239, 249, 0.6));
  border: 1px dashed #9C86B8;
  border-radius: 6px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #553E6F;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.ig-clickable-banner:hover {
  background: rgba(156, 134, 184, 0.22);
}

/* 7. Feed Tabs */
.ig-feed-tabs {
  display: flex;
  border-top: 0.5px solid #DBDBDB;
  border-bottom: 0.5px solid #DBDBDB;
  margin-top: 4px;
}

.ig-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  color: #8E8E8E;
  cursor: pointer;
  position: relative;
}

.ig-tab svg {
  width: 18px;
  height: 18px;
}

.ig-tab.active {
  color: #262626;
}

.ig-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #262626;
}

/* 8. Realistic Instagram Grid */
.ig-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: #FFFFFF;
  flex: 1;
}

.ig-grid-tile {
  aspect-ratio: 1;
  background: #F0EDF5;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ig-grid-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-indicator {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #FFFFFF;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
  width: 14px;
  height: 14px;
}

.carousel-indicator svg {
  width: 100%;
  height: 100%;
}

/* 9. Instagram Bottom Nav Bar */
.ig-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 10px 14px;
  border-top: 0.5px solid rgba(0,0,0,0.08);
  background: #FFFFFF;
  margin-top: auto;
}

.ig-bar-icon {
  width: 20px;
  height: 20px;
  color: #262626;
  cursor: pointer;
}

.ig-bar-icon.active {
  color: #000000;
}

.ig-bar-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #262626;
}

.ig-bar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Polaroids */
.polaroid {
  position: absolute;
  background: #FFFFFF;
  padding: 10px 10px 22px 10px;
  box-shadow: var(--shadow-polaroid);
  border-radius: 4px;
  transition: transform var(--transition-normal);
  z-index: 5;
}

.polaroid:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 25;
}

.polaroid-inner {
  overflow: hidden;
  background: #FAF8FB;
}

.polaroid-top {
  width: 165px;
  top: 15px;
  left: 10px;
  transform: rotate(-9deg);
}

.polaroid-top img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 2px;
}

.tape-strip {
  position: absolute;
  top: -12px;
  left: 35%;
  width: 50px;
  height: 20px;
  background: rgba(230, 222, 240, 0.75);
  backdrop-filter: blur(2px);
  transform: rotate(3deg);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.polaroid-bottom {
  width: 160px;
  bottom: 25px;
  right: 15px;
  transform: rotate(7deg);
}

.brand-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 2px;
}

.brand-card-preview {
  width: 100%;
  height: 140px;
  background: #EAE1F5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.seal-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px dashed #7E6699;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.seal-circle span {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: #382A47;
  line-height: 1;
}

.seal-circle small {
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #5F4E75;
}

/* Floating Handwritten Sticker Right - Positioned strictly outside iPhone */
.sticker-right {
  position: absolute;
  top: 25px;
  left: calc(50% + 165px);
  right: auto;
  transform: rotate(4deg);
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: #725D8A;
  z-index: 5;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.list-heart {
  font-size: 1.5rem;
  margin-bottom: 2px;
  color: #8C75A3;
}

.sticker-list {
  list-style: none;
  line-height: 1.35;
}

/* Botanical Art & Doodles */
.botanical-accent {
  position: absolute;
  bottom: -15px;
  right: -50px;
  width: 90px;
  height: 180px;
  color: #9C86B8;
  opacity: 0.55;
  pointer-events: none;
  z-index: 2;
}

.doodle-flower {
  position: absolute;
  top: 130px;
  right: -40px;
  width: 28px;
  height: 28px;
  color: #9C86B8;
  opacity: 0.7;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 6rem 2rem;
  background-color: var(--color-bg-base);
  position: relative;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: #8E75A8;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--color-text-title);
  letter-spacing: -0.5px;
  line-height: 1.15;
}

/* Services Grid (6 cards horizontally) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.8rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0.8rem;
  border-radius: var(--radius-lg);
  background: transparent;
  transition: all var(--transition-normal);
}

.service-card:hover {
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #F1EBF7;
  border: 1px solid #DFD2ED;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: #796196;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-wrap {
  background-color: #9C86B8;
  color: #FFFFFF;
  border-color: #9C86B8;
  transform: scale(1.08);
}

.service-icon {
  width: 32px;
  height: 32px;
}

.service-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-text-title);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   ABOUT SECTION ("SOBRE MÍ")
   ========================================================================== */
.about-section {
  padding: 5rem 2rem 6rem;
  background-color: var(--color-bg-base);
  position: relative;
}

.about-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 5rem;
}

.about-left {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-card-composition {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.card-bg-tint {
  position: absolute;
  top: -15px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: #D3C3E5;
  border-radius: 12px;
  transform: rotate(-5deg);
  z-index: 1;
}

.about-photo-wrap {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #FFF;
  padding: 10px;
  transform: rotate(-1.5deg);
  transition: transform var(--transition-normal);
}

.about-photo-wrap:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

.about-doodle-star {
  position: absolute;
  top: 15px;
  right: -30px;
  width: 32px;
  height: 32px;
  color: #8C75A3;
  z-index: 3;
  animation: pulse-sparkle 4s infinite ease-in-out;
}

/* About Right */
.about-right {
  position: relative;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text-title);
  margin-bottom: 1.6rem;
  letter-spacing: -0.5px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--color-text-body);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.about-quote {
  font-family: var(--font-script);
  font-size: 2.1rem;
  color: #62487A;
  line-height: 1.35;
  margin-bottom: 2.5rem;
}

/* Circular Stamp Badge */
.brand-stamp-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  transition: transform var(--transition-bounce);
}

.brand-stamp-wrap:hover {
  transform: rotate(6deg) scale(1.06);
}

.brand-stamp-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(70, 40, 95, 0.12);
}

.brand-stamp-svg {
  width: 100%;
  height: 100%;
}

.stamp-border {
  fill: none;
  stroke: #2E2638;
  stroke-width: 1.2;
}

.stamp-circular-text {
  font-family: var(--font-sans);
  font-size: 8.5px;
  font-weight: 600;
  fill: #34283F;
  letter-spacing: 2.5px;
}

.stamp-center-z {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  fill: #271E30;
}

.stamp-sparkle {
  position: absolute;
  bottom: 0;
  right: -20px;
  font-size: 1.8rem;
  color: #8C75A3;
}

/* ==========================================================================
   PORTFOLIO SECTION ("MI TRABAJO")
   ========================================================================== */
.portfolio-section {
  padding: 5rem 2rem 6rem;
  background-color: var(--color-bg-base);
  position: relative;
}

.portfolio-container {
  max-width: 1280px;
  margin: 0 auto;
}

.portfolio-header {
  margin-bottom: 3rem;
}

/* Carousel Container */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-track-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 1rem 0.5rem;
}

.carousel-track-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 1.6rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #C4B5D6;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(90, 70, 115, 0.25);
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background: #9C86B8;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -20px;
}

.next-btn {
  right: -20px;
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
}

/* Portfolio Cards */
.portfolio-item {
  flex: 0 0 260px;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  background: #FFF;
  border: 1px solid rgba(156, 134, 184, 0.15);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #B29CC9;
}

.item-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 34, 60, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.item-overlay span {
  background: #FFFFFF;
  color: #3C2B4E;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

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

/* Card 1: Nuestros Servicios Card */
.card-lilac-promo {
  background: #D8CCE8;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #2F233B;
}

.promo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #6C5584;
}

.card-lilac-promo h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.services-mini-list {
  list-style: none;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #4B3C5C;
  font-weight: 500;
}

.promo-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: #796191;
}

/* Card 3: Quienes Somos Minimalist */
.brand-editorial-box {
  background: #FFFFFF;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: 1px solid #EBE4F2;
}

.editorial-seal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #735F8A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #382A47;
  margin-bottom: 0.6rem;
}

.brand-editorial-box h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #281E33;
  margin-bottom: 0.5rem;
}

.brand-editorial-box p {
  font-size: 0.74rem;
  color: #6D6377;
  line-height: 1.45;
  margin-bottom: 0.8rem;
}

.brand-subtag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8C73A6;
  background: #F4EFF9;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

/* Card 5: Monogram Showcase */
.monogram-showcase {
  background: #DDD1EB;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.showcase-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mini-circle-svg {
  width: 90px;
  height: 90px;
}

.showcase-caption {
  margin-top: 0.6rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #4C3C5E;
}

/* ==========================================================================
   TESTIMONIALS SECTION ("LO QUE DICEN DE MÍ")
   ========================================================================== */
.testimonials-section {
  padding: 5rem 2rem 7rem;
  background-color: var(--color-bg-base);
  position: relative;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: 0 6px 20px rgba(70, 52, 90, 0.05);
  border: 1px solid rgba(160, 140, 185, 0.15);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(70, 52, 90, 0.08);
  border-color: #CBB9DF;
}

.testimonial-header {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #E4D9F0;
}

.testimonial-quote-box {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: #382A45;
  margin-bottom: 0.8rem;
}

.testimonial-author {
  font-size: 0.86rem;
  font-weight: 700;
  color: #271E30;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.testimonial-stars {
  color: #9C86B8;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ==========================================================================
   FOOTER & INTEGRATED CONTACT FORM
   ========================================================================== */
.site-footer {
  position: relative;
  color: #2E2438;
}

/* Organic Wave Divider */
.footer-wave-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  color: var(--color-lavender-footer);
}

.footer-wave-svg {
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
}

.footer-main-content {
  background-color: var(--color-lavender-footer);
  padding: 1rem 2rem 3rem;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Banner CTA Row */
.footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 0 2.5rem;
  border-bottom: 1px solid rgba(86, 68, 107, 0.12);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.script-phrase {
  font-family: var(--font-script);
  font-size: 2.35rem;
  color: #3F2F53;
  line-height: 1.2;
}

.btn-footer-cta {
  background-color: #8C75A8;
  font-size: 0.85rem;
  padding: 0.75rem 1.6rem;
}

.btn-footer-cta:hover {
  background-color: #786194;
}

/* Contact Card Box (The requested Contact Form) */
.contact-card-box {
  margin: 3rem 0;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  box-shadow: 0 16px 40px rgba(50, 36, 68, 0.08);
  border: 1px solid rgba(160, 140, 185, 0.25);
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #8A72A4;
  margin-bottom: 0.5rem;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: #271D33;
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: #6E627C;
  max-width: 580px;
  margin: 0 auto;
}

/* Contact Form Grid */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #3C304B;
  letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid #E1D6ED;
  background-color: #FAF8FD;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #2F243D;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9C86B8;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(156, 134, 184, 0.18);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ADA4B8;
}

.field-error {
  display: none;
  font-size: 0.74rem;
  color: #D32F2F;
  font-weight: 500;
  margin-top: 2px;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #D32F2F;
}

.form-group.has-error .field-error {
  display: block;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #9076AB;
  color: #FFFFFF;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  box-shadow: 0 6px 18px rgba(144, 118, 171, 0.35);
  transition: all var(--transition-fast);
}

.btn-submit:hover {
  background-color: #7B6197;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(144, 118, 171, 0.45);
}

.form-privacy {
  font-size: 0.78rem;
  color: #7D728B;
}

/* Success Banner */
.form-success-banner {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.success-icon {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

.form-success-banner h4 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #2F213D;
  margin-bottom: 0.8rem;
}

.form-success-banner p {
  font-size: 0.95rem;
  color: #5D526C;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.btn-reset-form {
  background: transparent;
  border: 1.5px solid #9C86B8;
  color: #6C5584;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.btn-reset-form:hover {
  background: #EDE7F6;
}

/* Bottom Footer Grid */
.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(86, 68, 107, 0.12);
}

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

.footer-seal {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
}

.footer-seal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(60, 40, 80, 0.12);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #2A1F36;
  line-height: 1.2;
}

.brand-role {
  font-size: 0.78rem;
  color: #6B5D7C;
  margin-top: 3px;
}

.footer-col-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #5B4873;
  margin-bottom: 1rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-list a {
  font-size: 0.88rem;
  color: #4D3F5E;
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
  color: #1F1528;
  padding-left: 4px;
}

/* Socials */
.social-icons-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #55416C;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(60, 42, 80, 0.08);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: #876EA6;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-handle {
  font-size: 0.82rem;
  color: #5D4A73;
  font-weight: 600;
}

/* Legal Bottom Bar */
.footer-legal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.8rem;
  font-size: 0.76rem;
  color: #6A5B7D;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-tags {
  letter-spacing: 1px;
  font-weight: 600;
}

/* ==========================================================================
   DIRECT WHATSAPP & FLOATING BUTTON STYLES
   ========================================================================== */
.btn-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.32);
  transition: all var(--transition-fast);
}

.btn-whatsapp-direct:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.wa-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Floating WhatsApp Quick Action Button */
.floating-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.75rem 1.3rem;
  border-radius: 9999px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-wa-btn:hover {
  background: #20BA5A;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
  color: #FFFFFF;
}

.floating-wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wa-ripple {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 2px solid #25D366;
  animation: wa-pulse 2.2s infinite;
  pointer-events: none;
}

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

/* ==========================================================================
   MODAL LIGHTBOX - ULTRA-CLEAN UNCROPPED EDITORIAL SHOWCASE
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22, 14, 32, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #FFFFFF;
  border-radius: 28px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 35px 80px -15px rgba(25, 12, 40, 0.4), 0 0 0 1px rgba(150, 120, 180, 0.15);
  transform: scale(0.92) translateY(10px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #403055;
  border: 1px solid rgba(140, 110, 175, 0.2);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #9376B5;
  color: #FFFFFF;
  transform: rotate(90deg) scale(1.08);
}

.modal-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  max-height: 90vh;
  overflow-y: auto;
}

/* Image Showcase Stage - Strictly NEVER Cropped */
.modal-preview {
  background: radial-gradient(circle at 50% 40%, #FAF8FD 0%, #EDE3F6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  position: relative;
  min-height: 420px;
  border-right: 1px solid rgba(150, 120, 180, 0.12);
}

.modal-img-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.modal-clean-img {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  object-fit: contain !important;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(45, 25, 70, 0.16);
  background: #FFFFFF;
  transition: transform 0.3s ease;
}

.modal-clean-img:hover {
  transform: scale(1.02);
}

/* Modal Content Panel */
.modal-info {
  padding: 2.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  background: #FFFFFF;
  overflow-y: auto;
}

.modal-meta-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.modal-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #876DA8;
  background: #F3EDFA;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.modal-client-tag {
  font-size: 0.74rem;
  font-weight: 600;
  color: #5D4A73;
  background: #EDE5F6;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.22;
  color: #251B30;
  font-weight: 600;
}

.modal-desc {
  font-size: 0.92rem;
  line-height: 1.68;
  color: #554A63;
}

.modal-deliverables {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: -0.2rem;
}

.deliverable-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6D5B84;
  background: #FAF7FD;
  border: 1px solid #E6DCF0;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}

/* Modal CTA Box */
.modal-cta-box {
  padding-top: 1.4rem;
  border-top: 1px solid #EFE8F7;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal-cta-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: #3A2B4D;
}

.modal-cta-buttons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-modal-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.8rem 1.4rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.32);
  transition: all 0.2s ease;
}

.btn-modal-wa:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.wa-mini-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn-modal-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #9C86B8;
  color: #FFFFFF;
  padding: 0.8rem 1.4rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(156, 134, 184, 0.3);
  transition: all 0.2s ease;
}

.btn-modal-contact:hover {
  background: #876EA6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(156, 134, 184, 0.45);
  color: #FFFFFF;
}

.arrow-mini-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* Laptops and Desktops (<= 1200px) */
@media (max-width: 1200px) {
  .hero-container {
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 3.8rem;
  }
  .sticker-right {
    display: none !important;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
  .about-container {
    gap: 3rem;
  }
}

/* Tablets Landscape & Portrait (<= 992px) */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sticker-left {
    position: static;
    transform: rotate(-4deg);
    margin-bottom: 1.5rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-collage {
    max-width: 520px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
  }
  .about-left {
    order: 2;
  }
  .about-right {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-text {
    max-width: 600px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
    gap: 1.6rem;
  }
  .footer-bottom-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    text-align: center;
  }
  .footer-brand-col {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .social-icons-row {
    justify-content: center;
  }
}

/* Mobile Devices & Small Tablets (<= 768px) */
@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 2.2rem 2rem;
    gap: 1.4rem;
    border-bottom: 1px solid rgba(147, 118, 181, 0.2);
    box-shadow: 0 15px 35px rgba(40, 20, 60, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-toggle {
    display: flex;
  }
  .btn-cta-pill {
    display: none;
  }
  .btn-cta-pill.btn-footer-cta {
    display: inline-flex;
  }

  /* Hero Section */
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-collage {
    min-height: 480px;
    width: 100%;
  }
  .iphone-mockup {
    width: 260px;
    height: 520px;
  }
  .polaroid-top {
    width: 125px;
    left: 5px;
  }
  .polaroid-bottom {
    width: 120px;
    right: 5px;
  }
  .sticker-right {
    display: none !important;
  }

  /* Modal Lightbox - Stacked View on Mobile */
  .modal-dialog {
    max-width: 94vw;
    max-height: 90vh;
    border-radius: 20px;
  }
  .modal-body {
    grid-template-columns: 1fr;
    max-height: 90vh;
  }
  .modal-preview {
    min-height: 240px;
    max-height: 42vh;
    padding: 1.5rem 1.2rem;
    border-right: none;
    border-bottom: 1px solid rgba(150, 120, 180, 0.12);
  }
  .modal-clean-img {
    max-height: 38vh;
  }
  .modal-info {
    padding: 1.6rem 1.4rem;
    gap: 1rem;
  }
  .modal-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-modal-wa, .btn-modal-contact {
    width: 100%;
    text-align: center;
  }

  /* Contact Form */
  .contact-card-box {
    padding: 2.2rem 1.5rem;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-submit-row {
    flex-direction: column;
    gap: 0.8rem;
  }
  .btn-submit, .btn-whatsapp-direct {
    width: 100%;
  }

  /* Section Typography */
  .script-phrase {
    font-size: 1.7rem;
  }
  .section-title, .about-title {
    font-size: 2.2rem;
  }
}

/* Small Mobiles (<= 480px) */
@media (max-width: 480px) {
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* iPhone Mockup responsive fit */
  .hero-collage {
    min-height: auto;
    padding: 1rem 0;
  }
  .iphone-mockup {
    width: min(280px, 86vw);
    height: auto;
    aspect-ratio: 295 / 590;
    max-height: 560px;
  }
  .polaroid-top, .polaroid-bottom {
    display: none;
  }
  .sticker-right {
    display: none;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .service-card {
    padding: 1.8rem 1.4rem;
  }

  /* Portfolio Carousel */
  .portfolio-item {
    flex: 0 0 240px;
    height: 240px;
  }
  .prev-btn {
    left: -5px;
  }
  .next-btn {
    right: -5px;
  }

  /* Floating WhatsApp Button */
  .floating-wa-btn {
    bottom: 20px;
    right: 20px;
    padding: 0.7rem 1.1rem;
    font-size: 0.82rem;
  }

  /* Contact Form Inputs */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px; /* Prevents auto-zoom on iOS */
    padding: 0.85rem 1rem;
  }

  /* Footer Bottom Bar */
  .footer-legal-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Extra Small Devices (<= 360px) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title, .about-title {
    font-size: 1.85rem;
  }
  .iphone-mockup {
    width: 250px;
  }
  .modal-dialog {
    max-width: 96vw;
  }
  .modal-info {
    padding: 1.2rem 1rem;
  }
}
