/* ========================================
   PRETTY SOCIAL - Custom Styles
   ======================================== */

/* CSS Variables */
:root {
    /* Brand Colors */
    --primary-pink: #FF1493;
    --primary-pink-light: #FF69B4;
    --secondary-pink: #FFB6C1;
    --soft-pink: #FFF0F5;
    --blush-pink: #FFE4EC;
    --white: #FFFFFF;
    --off-white: #FFF8FA;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --charcoal: #2D2D2D;
    
    /* Accent Colors */
    --deep-pink: #C71585;
    --coral-pink: #FF6B9D;
    
    /* Typography */
    --font-heading: 'Fraunces', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-size: 1.1rem;
    line-height: 1.7;
}

em {
    font-style: italic;
    font-family: var(--font-heading);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.35);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.35);
}

.btn-light {
    background: var(--white);
    color: var(--primary-pink);
}

.btn-light:hover {
    background: var(--blush-pink);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.btn-submit {
    background: var(--primary-pink);
    color: var(--white);
    width: 100%;
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-submit:hover {
    background: var(--deep-pink);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.45);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(255, 20, 147, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    justify-self: start;
}

.logo-img {
    height: 90px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(255, 20, 147, 0.3));
}

.nav-links {
    display: flex;
    gap: 35px;
    justify-self: center;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    display: inline-block;
    transition: var(--transition-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-pink-light));
    transition: var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-pink);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    justify-self: end;
    transition: var(--transition-smooth);
}

.mobile-toggle:hover {
    transform: scale(1.1);
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--dark-gray);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav spacer removed - was causing mobile glitch */

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 30px 80px;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 20, 147, 0.85) 0%,
        rgba(255, 105, 180, 0.75) 40%,
        rgba(199, 21, 133, 0.8) 100%
    );
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 3;
}

.hero-tagline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.15;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-headline em {
    font-style: italic;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.hero-intro {
    font-size: 1.15rem;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero .btn-primary {
    animation: fadeInUp 1s ease-out 0.8s both;
    margin-bottom: 20px;
}

.hero-flower {
    position: absolute;
    bottom: 50px;
    right: 10%;
    font-size: 4rem;
    color: var(--white);
    opacity: 0.4;
    animation: float 4s ease-in-out infinite;
    z-index: 3;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 25px;
    right: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--white);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ========================================
   MARQUEE SECTION
   ======================================== */
.marquee-section {
    background: var(--charcoal);
    padding: 25px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-pink);
    padding: 0 30px;
    font-style: italic;
}

.marquee-content .flower {
    color: var(--primary-pink);
    font-style: normal;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: var(--soft-pink);
    padding: var(--section-padding) 30px;
}

.about-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    font-style: italic;
    color: var(--dark-gray);
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-top: 1px solid rgba(51, 51, 51, 0.2);
}

.accordion-item:last-child {
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--dark-gray);
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header:hover {
    color: var(--primary-pink);
    padding-left: 10px;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--dark-gray);
    transition: var(--transition-smooth);
}

.accordion-icon::before {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.accordion-icon::after {
    width: 2px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 25px;
}

.accordion-content p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.05rem;
}

.accordion-content em {
    color: var(--primary-pink);
}

.accordion-content strong {
    color: var(--dark-gray);
}

/* ========================================
   FEATURE SECTION
   ======================================== */
.feature-section {
    background: linear-gradient(135deg, var(--deep-pink) 0%, var(--primary-pink) 50%, #e91e8c 100%);
    padding: calc(var(--section-padding) + 30px) 30px;
    position: relative;
    overflow: hidden;
}

/* Animated background elements */
.feature-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.feature-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.feature-blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.4);
    top: -150px;
    left: -100px;
    animation: blob-float-1 12s ease-in-out infinite;
}

.feature-blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 182, 193, 0.5);
    bottom: -100px;
    right: -50px;
    animation: blob-float-2 10s ease-in-out infinite;
}

.feature-blob-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.3);
    top: 50%;
    right: 20%;
    animation: blob-float-3 14s ease-in-out infinite;
}

@keyframes blob-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, 50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

@keyframes blob-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -30px) scale(1.15); }
}

@keyframes blob-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 40px) scale(1.05); }
    66% { transform: translate(30px, -20px) scale(0.9); }
}

/* Animated lines */
.feature-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    height: 1px;
}

.feature-line-1 {
    width: 100%;
    top: 25%;
    animation: line-move 8s linear infinite;
}

.feature-line-2 {
    width: 100%;
    bottom: 30%;
    animation: line-move 10s linear infinite reverse;
}

@keyframes line-move {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Floating flowers */
.feature-flower {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    animation: flower-spin 20s linear infinite;
}

.feature-flower-1 {
    top: 15%;
    left: 8%;
    font-size: 2.5rem;
    animation-duration: 25s;
}

.feature-flower-2 {
    bottom: 20%;
    right: 10%;
    font-size: 1.8rem;
    animation-duration: 18s;
    animation-direction: reverse;
}

.feature-flower-3 {
    top: 60%;
    left: 85%;
    font-size: 2rem;
    animation-duration: 22s;
}

@keyframes flower-spin {
    0% { transform: rotate(0deg) scale(1); opacity: 0.15; }
    25% { transform: rotate(90deg) scale(1.1); opacity: 0.25; }
    50% { transform: rotate(180deg) scale(1); opacity: 0.15; }
    75% { transform: rotate(270deg) scale(1.1); opacity: 0.25; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.15; }
}

.feature-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.feature-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.4;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.feature-subheadline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    line-height: 1.5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.feature-subheadline em {
    color: var(--white);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 2px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.feature-section .btn-dark {
    background: var(--white);
    color: var(--primary-pink);
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.feature-section .btn-dark:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* ========================================
   SPOTLIGHT SECTION
   ======================================== */
.spotlight-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 600px;
}

/* Video Background */
.spotlight-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.spotlight-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(45, 45, 45, 0.92) 0%,
        rgba(199, 21, 133, 0.85) 50%,
        rgba(255, 20, 147, 0.9) 100%
    );
    z-index: 1;
}

.spotlight-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* Content Grid */
.spotlight-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Text Side */
.spotlight-text {
    color: var(--white);
}

.spotlight-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-pink);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 600;
}

.spotlight-name {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.spotlight-role {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Stats */
.spotlight-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Visual Side */
.spotlight-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.spotlight-image {
    position: relative;
    width: 320px;
    height: 320px;
}

/* Animated Rings */
.image-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-ring-1 {
    width: 100%;
    height: 100%;
    animation: ring-pulse 3s ease-in-out infinite;
}

.image-ring-2 {
    width: 120%;
    height: 120%;
    animation: ring-pulse 3s ease-in-out infinite 0.5s;
}

.image-ring-3 {
    width: 140%;
    height: 140%;
    animation: ring-pulse 3s ease-in-out infinite 1s;
}

@keyframes ring-pulse {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.image-blob {
    position: absolute;
    width: 85%;
    height: 85%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.9));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob 8s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.profile-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.initials {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: float-around 6s ease-in-out infinite;
}

.float-icon-1 {
    top: 10%;
    right: 10%;
    font-size: 2rem;
    color: var(--secondary-pink);
    animation-delay: 0s;
}

.float-icon-2 {
    bottom: 20%;
    left: 5%;
    font-size: 1.2rem;
    animation-delay: 1s;
}

.float-icon-3 {
    top: 60%;
    right: 0;
    font-size: 1.8rem;
    color: var(--primary-pink-light);
    animation-delay: 2s;
}

@keyframes float-around {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) rotate(15deg);
        opacity: 1;
    }
}

/* Bottom Marquee */
.spotlight-marquee {
    overflow: hidden;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spotlight-track {
    display: flex;
    animation: spotlight-scroll 25s linear infinite;
    white-space: nowrap;
}

.spotlight-track span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spotlight-track .marquee-dot {
    color: var(--primary-pink-light);
    font-size: 0.5rem;
    padding: 0 15px;
}

@keyframes spotlight-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 900px) {
    .spotlight-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .spotlight-text {
        order: 2;
    }
    
    .spotlight-visual {
        order: 1;
    }
    
    .spotlight-stats {
        justify-content: center;
    }
    
    .spotlight-name {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .spotlight-image {
        width: 260px;
        height: 260px;
    }
    
    .image-placeholder {
        width: 160px;
        height: 160px;
    }
    
    .initials {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .spotlight-section {
        padding: 70px 0 60px;
    }
    
    .spotlight-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .spotlight-image {
        width: 220px;
        height: 220px;
    }
    
    .image-placeholder {
        width: 140px;
        height: 140px;
    }
    
    .initials {
        font-size: 3rem;
    }
    
    .image-ring-2,
    .image-ring-3 {
        display: none;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background: var(--soft-pink);
    padding: var(--section-padding) 30px;
}

.services-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-title-dark {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    font-style: italic;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    color: #555555;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-pink-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 20, 147, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 20, 147, 0.18);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-pink);
    display: block;
    margin-bottom: 15px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.service-description {
    color: #555555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-link {
    display: inline-block;
    padding: 12px 28px;
    background: var(--charcoal);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-link::before {
    content: '→';
    position: absolute;
    right: 28px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-link:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
    padding-right: 45px;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.service-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   APPROACH SECTION
   ======================================== */
.approach-section {
    background: var(--white);
    padding: var(--section-padding) 30px;
}

.approach-container {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.approach-intro {
    color: #555555;
    max-width: 600px;
    margin: 20px auto 60px;
    font-size: 1.15rem;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.approach-step {
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.approach-step:hover {
    background: rgba(255, 20, 147, 0.05);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.approach-step:hover .step-icon {
    transform: scale(1.2) rotate(15deg);
}

.approach-step h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.approach-step p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.7;
}

/* ========================================
   VISUAL SHOWCASE SECTION
   ======================================== */
.showcase-section {
    background: var(--charcoal);
    padding: var(--section-padding) 30px;
    overflow: hidden;
}

.showcase-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.showcase-section .section-title-dark {
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}

.showcase-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
}

/* Visual cards grid */
.visuals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 26px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 105, 180, 0.35);
    box-shadow: 0 30px 80px rgba(255, 20, 147, 0.18);
}

.visual-art {
    height: 220px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.visual-art::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
    pointer-events: none;
}

.visual-art-branding {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.95) 0%, rgba(199, 21, 133, 0.9) 50%, rgba(45, 45, 45, 0.95) 100%);
}

.visual-art-social {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.95) 0%, rgba(255, 105, 180, 0.85) 45%, rgba(45, 45, 45, 0.95) 100%);
}

.visual-art-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 20, 147, 0.65) 40%, rgba(45, 45, 45, 0.95) 100%);
}

/* Branding art */
.art-chip,
.art-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(45, 45, 45, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.art-badge {
    left: auto;
    right: 18px;
    background: rgba(255, 255, 255, 0.14);
}

.art-lines {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 52%;
    border-radius: 14px;
    background:
        linear-gradient(transparent 0%, rgba(255, 255, 255, 0.08) 100%),
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.18) 0px,
            rgba(255, 255, 255, 0.18) 2px,
            transparent 2px,
            transparent 16px
        );
    border: 1px solid rgba(255, 255, 255, 0.14);
}

/* Social art */
.art-post {
    position: absolute;
    width: 55%;
    height: 65%;
    left: 18px;
    top: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.art-post-2 {
    width: 45%;
    height: 52%;
    left: auto;
    right: 18px;
    top: 52px;
    background: rgba(45, 45, 45, 0.35);
}

.art-metrics {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 12px 16px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(45, 45, 45, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.metric-dot {
    color: var(--secondary-pink);
    font-size: 0.6rem;
    line-height: 1.6;
}

/* Content art */
.art-reel {
    position: absolute;
    width: 52%;
    height: 78%;
    left: 18px;
    top: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 20, 147, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.art-caption {
    position: absolute;
    right: 18px;
    top: 26px;
    width: 38%;
    height: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.art-caption-2 {
    top: 54px;
    width: 32%;
    opacity: 0.85;
}

.visual-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.visual-description {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}

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

.showcase-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-style: italic;
    color: var(--secondary-pink);
    margin-bottom: 25px;
}

/* Responsive adjustments for showcase */
@media (max-width: 900px) {
    .visuals-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .visual-art {
        height: 210px;
    }
}

@media (max-width: 480px) {
    .visual-card {
        padding: 22px;
    }

    .visual-art {
        height: 190px;
    }
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages-section {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--deep-pink) 100%);
    padding: var(--section-padding) 30px;
}

.packages-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-title-light {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.packages-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
}

.packages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 1.1rem;
    padding: 12px 15px;
    margin: 0 -15px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.package-item:hover .check-icon {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.15);
}

.packages-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-text {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-style: italic;
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-section {
    background: var(--charcoal);
    padding: var(--section-padding) 30px;
}

.why-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.why-section .section-title-dark {
    color: var(--secondary-pink);
    margin-bottom: 60px;
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    margin: 0 -15px;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.why-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.why-item:hover .why-check {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.4);
}

.why-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.why-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.why-tagline {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--secondary-pink);
    margin-top: 60px;
    font-style: italic;
}

.why-tagline em {
    color: var(--primary-pink);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: var(--soft-pink);
    padding: var(--section-padding) 30px;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-style: italic;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.contact-subtitle {
    color: #555555;
    font-size: 1.2rem;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark-gray);
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--secondary-pink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(255, 20, 147, 0.1);
    transform: translateY(-2px);
}

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

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--deep-pink);
    padding: 80px 30px 30px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-link:hover svg {
    fill: var(--primary-pink);
    transform: scale(1.1);
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: var(--white);
    color: var(--primary-pink);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--secondary-pink);
    padding-left: 10px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ========================================
   ANIMATIONS & MICRO-INTERACTIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Hover lift effect for cards and images */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Smooth image zoom on hover */
.img-zoom {
    overflow: hidden;
}

.img-zoom img,
.img-zoom video {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom:hover img,
.img-zoom:hover video {
    transform: scale(1.08);
}

/* Text highlight animation */
.text-highlight {
    background: linear-gradient(120deg, transparent 0%, rgba(255, 20, 147, 0.2) 50%, transparent 100%);
    background-size: 200% 100%;
    transition: background-position 0.5s ease;
}

.text-highlight:hover {
    background-position: -100% 0;
}

/* Stagger animation delays for lists */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .packages-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-img {
        height: 75px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 100px 30px 50px;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
        overflow: visible;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-links a {
        display: block;
        padding: 18px 0;
        font-size: 1.4rem;
        border-bottom: 1px solid var(--light-gray);
        color: var(--dark-gray);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:hover {
        transform: none;
        color: var(--primary-pink);
    }
    
    .hero {
        padding: 110px 20px 80px;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-line {
        height: 30px;
    }
    
    /* Feature section mobile adjustments */
    .feature-blob-1 {
        width: 200px;
        height: 200px;
    }
    
    .feature-blob-2 {
        width: 150px;
        height: 150px;
    }
    
    .feature-blob-3 {
        display: none;
    }
    
    .feature-flower-1,
    .feature-flower-2 {
        font-size: 1.5rem;
    }
    
    .feature-flower-3 {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .spotlight-image {
        width: 220px;
        height: 220px;
    }
    
    .image-placeholder {
        width: 160px;
        height: 160px;
    }
    
    .initials {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 65px;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    .hero-intro {
        font-size: 1rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-flower {
        font-size: 2.5rem;
        bottom: 30px;
        right: 5%;
    }
    
    .feature-section {
        padding: 60px 20px;
    }
    
    .feature-headline {
        font-size: 1.5rem;
    }
    
    .feature-subheadline {
        font-size: 1.2rem;
    }
    
    .feature-flower-1,
    .feature-flower-2 {
        display: none;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
    }
    
    .marquee-content span {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .package-item {
        font-size: 1rem;
        margin: 0;
        padding: 10px;
    }
    
    .package-item:hover {
        transform: translateY(-3px);
    }
    
    .why-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin: 0;
        padding: 20px 15px;
    }
    
    .why-item:hover {
        transform: translateY(-5px);
    }
    
    .why-check {
        margin: 0 auto;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #FFFFFF;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--charcoal);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: var(--charcoal);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

