/* === Variables & Reset === */
:root {
    --primary-blue: #026BC2;
    --primary-light: #93CEFF;
    --accent-pink: #FFB3D4;
    --accent-pink-light: #FFDEEC;
    --bg-teal: #3B7E8F;
    --purple: #9b59b6;
    --text-dark: #1a1a1a;
    --text-grey: #555555;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --gradient-text: linear-gradient(45deg, var(--primary-blue), #d63384);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Parisienne', cursive;
    font-weight: 700;
}

h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(2, 107, 194, 0.7);
    outline-offset: 4px;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Utilities === */
.text-gradient {
    background: var(--gradient-text);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

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

.section-gradient-1 {
    background: linear-gradient(180deg, #f0f8ff 0%, #fff0f5 100%);
}

.section-gradient-2 {
    background: linear-gradient(180deg, #fff0f5 0%, #f0f8ff 100%);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar.scrolled {
    top: 10px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 95%;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 5s ease infinite;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover i {
    animation: spin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--accent-pink);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nav-links {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--text-grey);
    transition: all 0.3s ease;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-blue);
    background: rgba(2, 107, 194, 0.05);
}

.nav-links a.active-link {
    color: var(--primary-blue);
    background: rgba(2, 107, 194, 0.08);
    font-weight: 700;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--primary-blue);
}

.hamburger:focus-visible {
    outline: 3px solid rgba(2, 107, 194, 0.6);
    outline-offset: 6px;
}

/* === Buttons === */
.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(2, 107, 194, 0.3);
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 107, 194, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--primary-blue);
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 107, 194, 0.1), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::after {
    left: 100%;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* === Hero Section === */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-pink);
    top: -100px;
    right: -100px;
    animation: float 8s infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    bottom: -50px;
    left: -50px;
    animation: float 10s infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--bg-teal);
    top: 50%;
    right: 20%;
    animation: float 12s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 560px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 24px;
    color: var(--text-grey);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 107, 194, 0.08);
    padding: 12px 18px;
    border-radius: 999px;
}

.hero-trust i {
    color: var(--primary-blue);
}

.hero-feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 36px;
}

.hero-feature-list div {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(2, 107, 194, 0.1);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-feature-list i {
    color: var(--primary-blue);
}

.stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    transition: all 0.3s ease;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.stat-item:hover h3 {
    text-shadow: 0 0 20px rgba(2, 107, 194, 0.5);
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.3s ease;
}

/* === Feature Preview Grid === */
.feature-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    perspective: 1000px;
}

.preview-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Illustration backgrounds for each card */
.preview-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 20px;
    z-index: 3;
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

/* Smart Planning Illustration */
.preview-card:nth-child(1)::after {
    background-image: url('Time management-rafiki.svg');
    background-color: rgba(102, 126, 234, 0.9);
    opacity: 0;
}

/* Fundraising Illustration */
.preview-card:nth-child(2)::after {
    background-image: url('Money motivation-rafiki.svg');
    background-color: rgba(240, 147, 251, 0.9);
    opacity: 0;
}

/* Guest Manager Illustration */
.preview-card:nth-child(3)::after {
    background-image: url('Accept tasks-rafiki.svg');
    background-color: rgba(79, 172, 254, 0.9);
    opacity: 0;
}

/* Vendors Illustration */
.preview-card:nth-child(4)::after {
    background-image: url('Catering service-rafiki.svg');
    background-color: rgba(168, 237, 234, 0.9);
    opacity: 0;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    z-index: 1;
}

.preview-card:hover::before {
    left: 100%;
}

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

.preview-card:hover {
    transform: translateY(-10px) rotateY(10deg) rotateX(5deg) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 4;
}

.preview-card:hover .card-icon {
    opacity: 0;
    transform: scale(0.8) rotate(360deg);
}

.card-icon.blue {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
}

.card-icon.pink {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
}

.card-icon.teal {
    background: linear-gradient(135deg, var(--bg-teal), #5fa8b8);
}

.card-icon.purple {
    background: linear-gradient(135deg, var(--purple), #c39bd3);
}

.preview-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Nunito Sans', sans-serif;
    position: relative;
    z-index: 4;
    transition: color 0.3s ease;
}

.preview-card p {
    font-size: 0.9rem;
    color: var(--text-grey);
    position: relative;
    z-index: 4;
    transition: color 0.3s ease;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-slow {
    animation: float 8s ease-in-out infinite;
}

/* === Section Headers === */
.section-header {
    margin-bottom: 60px;
}

.tagline {
    color: var(--primary-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.section-header:hover .tagline {
    letter-spacing: 3px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-grey);
}

.feature-section {
    padding: 100px 0;
}

/* === Genie Section === */
#genie {
    position: relative;
    overflow: hidden;
}

/* Magical Particles */
.genie-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(2, 107, 194, 0.5);
}

.particle:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.particle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle:nth-child(3) {
    top: 50%;
    left: 10%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.particle:nth-child(4) {
    top: 70%;
    right: 15%;
    animation-delay: 0.5s;
    animation-duration: 10s;
}

.particle:nth-child(5) {
    top: 20%;
    right: 40%;
    animation-delay: 1.5s;
    animation-duration: 7.5s;
}

.particle:nth-child(6) {
    top: 80%;
    left: 30%;
    animation-delay: 3s;
    animation-duration: 9.5s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0.9;
    }
}

/* Genie Lamp Animation */
.genie-lamp {
    display: inline-block;
    animation: lampGlow 2s ease-in-out infinite;
}

.genie-lamp i {
    color: var(--primary-blue);
    filter: drop-shadow(0 0 10px rgba(2, 107, 194, 0.5));
}

@keyframes lampGlow {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

/* Shimmer Effect */
.genie-shimmer {
    position: relative;
    overflow: hidden;
}

.genie-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 20px;
    background: rgba(2, 107, 194, 0.1);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
}

.trust-badge i {
    font-size: 1rem;
}

/* Genie Showcase */
.genie-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Chat Demo */
.genie-chat-demo {
    background: white;
    padding: 0;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    overflow: hidden;
}

.genie-chat-demo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, var(--primary-blue), #0482d6);
    padding: 20px 30px;
    border-radius: 25px 25px 0 0;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #4ade80;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Conversation Selector */
.conversation-selector {
    display: flex;
    gap: 10px;
}

.conv-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.conv-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.conv-btn.active {
    background: white;
    color: var(--primary-blue);
}

/* Chat Messages */
.chat-messages {
    padding: 30px;
    min-height: 400px;
}

.conversation-set {
    display: none;
}

.conversation-set.active {
    display: block;
}

.chat-bubble {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chat-bubble.user {
    flex-direction: row-reverse;
}

.bubble-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sparkle-icon {
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-10deg) scale(1.1);
    }

    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

.chat-bubble:hover .bubble-avatar {
    transform: scale(1.1) rotate(10deg);
}

.bubble-content {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 20px;
    max-width: 70%;
    transition: all 0.3s ease;
}

.chat-bubble.user .bubble-content {
    background: var(--primary-blue);
    color: white;
}

.bubble-content:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Typing Indicator */
.typing-dots {
    display: flex;
    gap: 5px;
    padding: 5px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--text-grey);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

/* Mood Boards */
.mood-boards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.mood-board {
    height: 80px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mood-board-1 {
    background: linear-gradient(135deg, #d4af37, #f4e4c1);
}

.mood-board-2 {
    background: linear-gradient(135deg, #93c47d, #e0f2d0);
}

.mood-board-3 {
    background: linear-gradient(135deg, #e6b8af, #f4e0dc);
}

.mood-board::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.mood-board:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.mood-board:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Budget Breakdown */
.budget-breakdown {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.budget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(2, 107, 194, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-blue);
}

.budget-item span {
    color: var(--text-grey);
    font-size: 0.9rem;
}

.budget-item strong {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-family: 'Nunito Sans', sans-serif;
}

/* Flower List */
.flower-list {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
}

.flower-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.flower-list li::before {
    content: '🌸';
    position: absolute;
    left: 0;
}

/* Flip Cards */
.genie-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flip-card {
    background: transparent;
    perspective: 1000px;
    height: 280px;
    cursor: pointer;
    min-height: 280px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.flip-card-front {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--primary-blue), #0482d6);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.flip-card:hover .flip-card-front,
.flip-card:hover .flip-card-back {
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    color: white;
}

.feature-icon.visual-analysis {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.feature-icon.theme-matching {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.feature-icon.trend-predictions {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.flip-card-front h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-dark);
}

.flip-card-front p {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-hint {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: auto;
}

.flip-card-back h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Nunito Sans', sans-serif;
}

.flip-card-back ul {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
    max-height: calc(100% - 50px);
    overflow-y: auto;
}

.flip-card-back li {
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.flip-card-back li:last-child {
    border-bottom: none;
}

/* Demo Widget */
.genie-demo-widget {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.demo-header {
    text-align: center;
    margin-bottom: 30px;
}

.demo-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-dark);
}

.demo-header p {
    color: var(--text-grey);
    font-size: 1rem;
}

.demo-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 25px;
}

.prompt-pill {
    background: linear-gradient(135deg, var(--primary-blue), #0482d6);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prompt-pill:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(2, 107, 194, 0.3);
}

.demo-input-area {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.demo-input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.3s ease;
}

.demo-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(2, 107, 194, 0.1);
}

.demo-submit {
    background: linear-gradient(135deg, var(--primary-blue), #0482d6);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 107, 194, 0.4);
}

.demo-response {
    margin-top: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f0f8ff, #fff0f5);
    border-radius: 20px;
    border-left: 4px solid var(--primary-blue);
    position: relative;
}

.response-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--primary-blue);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.response-close:hover {
    background: #014a8f;
    transform: rotate(90deg) scale(1.1);
}

.response-content {
    display: flex;
    gap: 20px;
    align-items: start;
}

.response-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.response-text {
    flex: 1;
}

.response-text p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.response-cta {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.response-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 107, 194, 0.3);
}

/* Genie CTA */
.genie-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.genie-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-anim {
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(2, 107, 194, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(2, 107, 194, 0.6);
    }
}

/* === Fundraising Section === */
#fundraising {
    position: relative;
    overflow: hidden;
}

/* Floating Particles Background */
.fundraising-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle, rgba(255, 179, 212, 0.15) 2px, transparent 2px),
        radial-gradient(circle, rgba(2, 107, 194, 0.15) 2px, transparent 2px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% {
        background-position: 0 0, 40px 40px;
    }

    100% {
        background-position: 50px 50px, 90px 90px;
    }
}

/* Confetti Canvas */
.confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.fundraising-visual {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Enhanced Wallet Dashboard with Glassmorphism */
.wallet-dashboard {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 8px 32px 0 rgba(2, 107, 194, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.wallet-dashboard:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px 0 rgba(2, 107, 194, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
}

/* Sparkle Overlay Effect */
.sparkle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 2%),
        radial-gradient(circle at 80% 20%, rgba(255, 179, 212, 0.4) 0%, transparent 3%),
        radial-gradient(circle at 40% 70%, rgba(2, 107, 194, 0.3) 0%, transparent 2%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.6) 0%, transparent 2%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: sparkleShift 8s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes sparkleShift {

    0%,
    100% {
        background-position: 0% 0%;
        opacity: 0.4;
    }

    50% {
        background-position: 100% 100%;
        opacity: 0.8;
    }
}

.balance-display {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.label {
    font-size: 0.9rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Morphing Counter Animation */
.amount {
    font-size: 3.5rem;
    color: var(--primary-blue);
    font-family: 'Nunito Sans', sans-serif;
    margin: 10px 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 20px rgba(2, 107, 194, 0.2);
}

.balance-display:hover .amount {
    transform: scale(1.08);
    text-shadow: 0 5px 40px rgba(2, 107, 194, 0.4);
}

.cents {
    font-size: 2rem;
    opacity: 0.7;
}

/* Enhanced Progress Ring */
.progress-ring {
    position: relative;
    margin: 30px auto;
    width: 200px;
    height: 200px;
}

.progress-ring svg {
    transform: rotate(-90deg);
    filter: drop-shadow(0 4px 20px rgba(2, 107, 194, 0.3));
}

.progress-ring-bg {
    fill: none;
    stroke: rgba(240, 240, 240, 0.8);
    stroke-width: 12;
}

.progress-ring-fill {
    fill: none;
    stroke-width: 12;
    stroke-dasharray: 565;
    stroke-dashoffset: 124;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease-out;
    animation: fillProgress 3s ease forwards;
    filter: drop-shadow(0 0 8px rgba(2, 107, 194, 0.5));
}

@keyframes fillProgress {
    from {
        stroke-dashoffset: 565;
    }

    to {
        stroke-dashoffset: 124;
    }
}

/* Milestone Markers */
.milestone-marker {
    position: absolute;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.9rem;
    border: 3px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.milestone-marker:hover {
    transform: scale(1.3) rotate(360deg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Position milestone markers around the ring */
.milestone-25 {
    top: 10%;
    right: 20%;
}

.milestone-50 {
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
}

.milestone-75 {
    bottom: 10%;
    right: 20%;
}

.milestone-100 {
    bottom: 10%;
    left: 20%;
}

/* Reached milestone styling */
.milestone-reached {
    background: linear-gradient(135deg, #FFB3D4, #FF85B6);
    color: white;
    border-color: #FF85B6;
    animation: milestoneReached 1.5s ease-in-out infinite;
}

@keyframes milestoneReached {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 179, 212, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 179, 212, 0);
    }
}

.ring-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.percentage {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    text-shadow: 0 2px 10px rgba(2, 107, 194, 0.2);
}

.goal-label {
    font-size: 0.75rem;
    color: var(--text-grey);
    display: block;
    margin-top: 5px;
}

/* Recent Contributions */
.recent-contributions {
    margin-top: 35px;
}

.recent-contributions h3 {
    font-size: 1.15rem;
    margin-bottom: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.recent-contributions h3 i {
    color: var(--accent-pink);
    font-size: 1.1rem;
}

.contribution-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: white;
    border-radius: 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: visible;
    border: 1.5px solid #f0f0f0;
}

.contribution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 107, 194, 0.05), transparent);
    transition: left 0.5s;
    z-index: 0;
}

.contribution-item:hover::before {
    left: 100%;
}

.contribution-item:hover {
    transform: translateX(5px);
    background: #fafafa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(2, 107, 194, 0.15);
}

/* Avatar with Pulse Ring - FIXED */
.contrib-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.avatar-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.avatar-circle.pink {
    background: linear-gradient(135deg, #FFB3D4, #FF85B6);
}

.avatar-circle.blue {
    background: linear-gradient(135deg, #026BC2, #0482d6);
}

.avatar-circle.teal {
    background: linear-gradient(135deg, #3B7E8F, #5fa8b8);
}

.contribution-item:hover .avatar-circle {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Pulse Ring Animation */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    border: 2.5px solid rgba(2, 107, 194, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 2.5s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

@keyframes pulseRing {
    0% {
        width: 44px;
        height: 44px;
        opacity: 0.8;
    }

    100% {
        width: 64px;
        height: 64px;
        opacity: 0;
    }
}

/* Heart Burst on Hover */
.heart-burst {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0;
}

.contribution-item:hover .heart-burst::before,
.contribution-item:hover .heart-burst::after {
    content: '💝';
    position: absolute;
    font-size: 1.2rem;
    animation: burstHeart 0.8s ease-out;
}

.contribution-item:hover .heart-burst::before {
    animation-delay: 0s;
}

.contribution-item:hover .heart-burst::after {
    animation-delay: 0.15s;
}

@keyframes burstHeart {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-40px) scale(1.5);
        opacity: 0;
    }
}

.contrib-info {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.contrib-info h4 {
    font-size: 0.95rem;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.contrib-info span {
    font-size: 0.75rem;
    color: var(--text-grey);
    display: flex;
    align-items: center;
    gap: 4px;
}

.contrib-info span i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.contrib-amount {
    margin-left: auto;
    font-size: 1.1rem;
    font-weight: 800;
    color: #4caf50;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.contribution-item:hover .contrib-amount {
    transform: scale(1.1);
    color: #388e3c;
}

/* Fundraising Features */
.fundraising-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fund-feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.fund-feature:hover {
    transform: translateY(-8px) translateX(5px);
    box-shadow: 0 15px 40px rgba(2, 107, 194, 0.2);
    background: white;
}

/* Animated Icons */
.fund-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

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

.fund-feature:hover .fund-icon::before {
    width: 100px;
    height: 100px;
}

.bell-icon {
    background: linear-gradient(135deg, #FFB3D4, #FF85B6);
    color: white;
}

.fund-feature:hover .bell-icon {
    transform: rotate(25deg) scale(1.1);
    animation: ringBell 0.5s ease-in-out;
}

@keyframes ringBell {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-15deg);
    }
}

.paypal-icon {
    background: linear-gradient(135deg, #0482d6, #026BC2);
    color: white;
}

.fund-feature:hover .paypal-icon {
    transform: scale(1.15) translateX(5px);
}

.shield-icon {
    background: linear-gradient(135deg, #3B7E8F, #5fa8b8);
    color: white;
}

.fund-feature:hover .shield-icon {
    transform: scale(1.1) rotate(360deg);
}

.fund-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Nunito Sans', sans-serif;
}

.fund-content p {
    font-size: 0.9rem;
    color: var(--text-grey);
}


/* === Planning Dashboard === */
.planning-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Enhanced Calendar Widget with Glassmorphism */
.calendar-widget {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(2, 107, 194, 0.15);
    transition: all 0.4s ease;
}

.calendar-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px 0 rgba(2, 107, 194, 0.25);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calendar-header h3 {
    font-size: 1.3rem;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.calendar-nav {
    display: flex;
    gap: 15px;
}

.calendar-nav i {
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

.calendar-nav i:hover {
    background: var(--accent-pink-light);
    transform: scale(1.15);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-grey);
    padding: 8px;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.day:hover {
    background: var(--accent-pink-light);
    transform: scale(1.1);
}

.day.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(2, 107, 194, 0.3);
}

/* Event Indicators */
.day.has-event {
    position: relative;
}

.event-dot {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-blue);
}

.day.venue-event .event-dot {
    background: #026BC2;
}

.day.vendor-event .event-dot {
    background: #FFB3D4;
}

.day.task-event .event-dot {
    background: #3B7E8F;
}

/* Pulsing Wedding Day */
.day.wedding-day {
    background: linear-gradient(135deg, #FFB3D4, #FF85B6, #d63384);
    color: white;
    font-weight: 800;
    position: relative;
    animation: weddingPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 179, 212, 0.6);
}

.day.wedding-day i {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.6rem;
    animation: heartBeat 1.2s ease-in-out infinite;
}

@keyframes weddingPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 179, 212, 0.6), 0 0 0 0 rgba(255, 179, 212, 0.7);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 179, 212, 0.8), 0 0 0 15px rgba(255, 179, 212, 0);
    }
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Enhanced Task Section with Glassmorphism */
.task-section {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(2, 107, 194, 0.15);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.task-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px 0 rgba(2, 107, 194, 0.25);
}

/* Task Header with Progress */
.task-header {
    margin-bottom: 20px;
}

.task-header h3 {
    font-size: 1.2rem;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.task-header h3 i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.task-progress {
    margin-bottom: 8px;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin-bottom: 5px;
    display: block;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-pink));
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(2, 107, 194, 0.3);
}

/* Enhanced Task Items */
.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: white;
    border-radius: 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1.5px solid #f0f0f0;
}

.task-item:hover {
    transform: translateX(8px);
    background: #fafafa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(2, 107, 194, 0.2);
}

.task-item.active {
    border-left: 4px solid var(--primary-blue);
    background: rgba(2, 107, 194, 0.02);
}

.task-item.completed {
    opacity: 0.6;
}

.task-item.completed .task-info h4 {
    text-decoration: line-through;
}

.task-check {
    width: 26px;
    height: 26px;
    background: #e8f5e9;
    color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.task-item:hover .task-check {
    transform: scale(1.15);
}

.task-check.empty {
    background: transparent;
    border: 2px solid #ddd;
}

/* Color-Coded Task Icons */
.task-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.venue-task {
    background: linear-gradient(135deg, #026BC2, #0482d6);
    color: white;
}

.food-task {
    background: linear-gradient(135deg, #FFB3D4, #FF85B6);
    color: white;
}

.music-task {
    background: linear-gradient(135deg, #3B7E8F, #5fa8b8);
    color: white;
}

.task-item:hover .task-icon {
    transform: scale(1.1) rotate(5deg);
}

.task-info {
    flex: 1;
    min-width: 0;
}

.task-info h4 {
    font-size: 0.95rem;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 2px;
}

.task-info span {
    font-size: 0.75rem;
    color: var(--text-grey);
    display: flex;
    align-items: center;
    gap: 4px;
}

.task-info span i {
    font-size: 0.7rem;
}

/* Enhanced Planning Features */
.planning-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.plan-feature {
    flex: 1;
    min-width: 140px;
    background: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #f0f0f0;
}

.plan-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), #0482d6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.plan-feature:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.feature-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 0.7rem;
    color: var(--text-grey);
}

/* === Guests Section === */
.guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Role-Specific Gradient Backgrounds */
.bridesmaid-card {
    background: linear-gradient(135deg, rgba(255, 179, 212, 0.15), rgba(255, 133, 182, 0.1));
}

.bestman-card {
    background: linear-gradient(135deg, rgba(2, 107, 194, 0.15), rgba(4, 130, 214, 0.1));
}

.maid-card {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(195, 155, 211, 0.1));
}

.groomsman-card {
    background: linear-gradient(135deg, rgba(59, 126, 143, 0.15), rgba(95, 168, 184, 0.1));
}

.guest-role-card {
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 30px;
    border: 1.5px solid rgba(0, 0, 0, 0.04);
}

.guest-role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.guest-role-card:hover::before {
    opacity: 0.05;
}

.guest-role-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Role Badges with Icons */
.role-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.role-badge.bridesmaid {
    background: linear-gradient(135deg, #FFB3D4, #FF85B6);
}

.role-badge.bestman {
    background: linear-gradient(135deg, #026BC2, #0482d6);
}

.role-badge.maid {
    background: linear-gradient(135deg, #9b59b6, #c39bd3);
}

.role-badge.groomsman {
    background: linear-gradient(135deg, #3B7E8F, #5fa8b8);
}

/* Status Indicators */
.status-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-indicator.confirmed {
    background: #e8f5e9;
    color: #4caf50;
}

.status-indicator.pending {
    background: #fff3e0;
    color: #ff9800;
    animation: pulseStatus 2s ease-in-out infinite;
}

@keyframes pulseStatus {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.status-indicator.declined {
    background: #ffebee;
    color: #f44336;
}

.guest-avatar {
    margin: 35px 0 20px;
    position: relative;
    z-index: 1;
}

.guest-role-card .avatar-circle {
    width: 90px;
    height: 90px;
    min-width: 90px;
    min-height: 90px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-pink-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.guest-role-card:hover .avatar-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(2, 107, 194, 0.3);
}

.guest-role-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.guest-quote {
    color: var(--text-grey);
    font-size: 0.85rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.guest-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Enhanced Action Buttons with Tooltips */
.action-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f0f7ff, #fff);
    border: 2px solid #e3f2fd;
    border-radius: 12px;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.action-icon:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(2, 107, 194, 0.3);
    border-color: var(--primary-blue);
}

/* Tooltip */
.action-icon .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.action-icon:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

/* Guest Stats with Enhanced Styling */
.guest-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.stat-box {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1.5px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box:hover {
    transform: translateY(-5px);
    color: var(--primary-blue);
    font-family: 'Nunito Sans', sans-serif;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.stat-box:hover h3 {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(2, 107, 194, 0.3);
}

.stat-box p {
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* === Vendors Section === */
.vendor-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.vendor-cat-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vendor-cat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.vendor-cat-card:hover::before {
    left: 100%;
}

.vendor-cat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.cat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.vendor-cat-card:hover .cat-icon {
    transform: scale(1.15) rotate(360deg);
}

.vendor-cat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Nunito Sans', sans-serif;
}

.vendor-cat-card p {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.cat-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #ffc107;
    font-weight: 600;
}

/* === CTA Section === */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-blue), #8e44ad, var(--accent-pink));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
}


.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 40px;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.store-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-blue), var(--purple));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.store-btn:hover::before {
    opacity: 1;
}

.store-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(2, 107, 194, 0.3);
}

.store-btn i,
.store-btn .btn-text {
    position: relative;
    z-index: 2;
}

.store-btn i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text span {
    font-size: 0.7rem;
}

.btn-text strong {
    font-size: 1.1rem;
}

/* === Footer === */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo:hover i {
    animation: spin 0.6s ease;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    transition: all 0.3s ease;
}

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

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.socials a:hover {
    background: var(--accent-pink);
    transform: scale(1.2) rotate(10deg);
}

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

/* === Mobile Active State (Scroll-triggered) === */
.mobile-active::after {
    opacity: 1 !important;
}

/* === Enhanced Vendors Section === */

/* Search & Filter Bar */
.vendor-search-container {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-grey);
    font-size: 1.2rem;
}

.vendor-search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border-radius: 15px;
    border: 2px solid #eee;
    font-size: 1rem;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.vendor-search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(2, 107, 194, 0.1);
}

.search-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid #eee;
    background: white;
    color: var(--text-grey);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(2, 107, 194, 0.2);
}

.filter-btn.icon-only {
    padding: 8px 15px;
}

/* Featured Vendors Section */
.featured-vendors-section {
    margin-bottom: 80px;
}

.section-subheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.section-subheader h3 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    gap: 12px;
}

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

/* Premium Vendor Card */
.vendor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.vendor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.vendor-img-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.vendor-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vendor-card:hover .vendor-img-wrapper img {
    transform: scale(1.1);
}

/* Badges */
.badge-verified,
.badge-featured,
.badge-top-rated,
.badge-choice {
    position: absolute;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.badge-verified {
    top: 15px;
    left: 15px;
    background: rgba(46, 204, 113, 0.9);
    backdrop-filter: blur(4px);
}

.badge-featured {
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.badge-top-rated {
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B6B, #EE5253);
}

.badge-choice {
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF9FF3, #F368E0);
}

/* Actions Overlay */
.vendor-actions-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.vendor-card:hover .vendor-actions-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overlay-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

/* Vendor Content */
.vendor-content {
    padding: 25px;
}

.vendor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.vendor-header h4 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 800;
}

.price-tier {
    color: var(--text-grey);
    font-weight: 600;
    font-size: 0.9rem;
}

.vendor-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-grey);
}

.vendor-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vendor-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #FFC107;
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-grey);
    font-weight: 600;
}

.vendor-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.btn-check-availability {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-check-availability:hover {
    background: var(--primary-blue);
    color: white;
}

/* Enhanced Category Cards */
.vendor-cat-card {
    position: relative;
    z-index: 1;
}

.cat-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    transition: all 0.4s ease;
    z-index: -1;
}

.vendor-cat-card:hover .cat-bg-overlay {
    opacity: 0.2;
}

/* Category Specific Styles */
.photo-cat .cat-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.photo-cat .cat-bg-overlay {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.catering-cat .cat-icon {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.catering-cat .cat-bg-overlay {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.music-cat .cat-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.music-cat .cat-bg-overlay {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.fashion-cat .cat-icon {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.fashion-cat .cat-bg-overlay {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.cakes-cat .cat-icon {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.cakes-cat .cat-bg-overlay {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.venues-cat .cat-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.venues-cat .cat-bg-overlay {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.mobile-active .card-icon {
    opacity: 0;
    transform: scale(0.8) rotate(360deg);
}

/* === Responsive === */

@media (max-width: 968px) {

    /* Disable hover flip animation on mobile; use click instead */
    .flip-card:hover .flip-card-inner {
        transform: none !important;
    }

    .flip-card-inner {
        transform: none !important;
    }

    .flip-card .flip-card-front {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        padding: 15px 20px;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
        /* Ensure padding doesn't add to width */
    }

    .nav-container {
        width: 100%;
    }

    .hero-content,
    .genie-showcase,
    .fundraising-visual,
    .planning-dashboard {
        grid-template-columns: 1fr;
        width: 100%;
        /* Ensure container doesn't overflow */
    }

    /* Mobile Navbar Reset */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 12px 16px;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-sizing: border-box;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    .navbar.scrolled {
        padding: 12px 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .nav-container {
        width: 100%;
    }

    .logo {
        font-size: 1rem;
        gap: 6px;
    }

    .logo-img {
        height: 28px !important;
        width: auto !important;
    }

    .hamburger {
        font-size: 1.2rem;
        padding: 4px;
    }

    /* Fix Hero Content Overflow */
    .hero-text,
    .hero-visual {
        min-width: 0;
        /* Allow flex/grid items to shrink below content size */
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        word-wrap: break-word;
        max-width: 100%;
        /* Prevent long words from breaking layout */
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-feature-list {
        grid-template-columns: 1fr;
    }

    .hero-feature-list div {
        width: 100%;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-feature-list {
        grid-template-columns: 1fr;
    }

    /* Fix Feature Preview Grid */
    .feature-preview-grid {
        grid-template-columns: 1fr;
        /* Force single column */
        width: 100%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 12px;
        padding: 18px 20px 22px;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 18px;
        border-radius: 16px;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: block;
        font-size: 1.5rem;
        color: var(--primary-blue);
    }

    h2 {
        font-size: 2rem;
    }

    /* Genie Section Mobile */
    .genie-particles {
        display: none;
    }

    .conversation-selector {
        flex-direction: column;
        gap: 8px;
    }

    .conv-btn {
        width: 100%;
        text-align: center;
    }

    .chat-messages {
        min-height: 300px;
        padding: 20px;
    }

    .bubble-content {
        max-width: 85%;
    }

    .flip-card {
        height: auto;
        min-height: auto;
        width: 100%;
        background: transparent;
    }

    .flip-card-inner {
        position: relative;
        width: 100%;
        height: auto;
        text-align: center;
        transition: none;
        transform-style: flat;
        transform: none !important;
    }

    .flip-card-front,
    .flip-card-back {
        position: static;
        width: 100%;
        height: auto;
        backface-visibility: visible;
        border-radius: 20px;
        padding: 25px;
        box-shadow: var(--shadow-sm);
        transition: all 0.3s ease;
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .flip-card-front {
        background: white;
        display: flex;
    }

    .flip-card-back {
        display: none;
        background: linear-gradient(135deg, var(--primary-blue), #0482d6);
        color: white;
        align-items: flex-start;
        transform: none;
    }

    /* Ensure mobile flip cards switch view on click */
    .flip-card.flipped .flip-card-front {
        display: none;
    }

    .flip-card.flipped .flip-card-back {
        display: flex;
        width: 100%;
        height: auto;
    }

    .flip-card.flipped .flip-card-inner {
        transform: none !important;
    }

    .flip-card-back li {
        padding: 10px 0;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .genie-demo-widget {
        padding: 25px;
        margin-top: 40px;
    }

    .demo-header h3 {
        font-size: 1.5rem;
    }

    .demo-prompts {
        flex-direction: column;
    }

    .featured-grid,
    .vendor-categories,
    .guests-grid,
    .guest-stats {
        grid-template-columns: 1fr !important;
    }

    .vendor-search-container {
        padding: 20px;
    }

    .vendor-search-input {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .app-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }

    .prompt-pill {
        width: 100%;
        justify-content: center;
    }

    .demo-input-area {
        flex-direction: column;
    }

    .demo-submit {
        width: 100%;
        justify-content: center;
    }

    .genie-cta {
        flex-direction: column;
    }

    .genie-cta a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}