/* ==========================================
   India29 Service Centre - Styles
   ========================================== */

/* CSS Variables */
:root {
    /* Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 30%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 30%, 15%);
    --primary: hsl(215, 80%, 45%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(155, 70%, 40%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(210, 20%, 96%);
    --muted-foreground: hsl(220, 15%, 45%);
    --border: hsl(220, 20%, 90%);
    --input: hsl(220, 20%, 90%);
    --ring: hsl(215, 80%, 45%);
    --radius: 0.75rem;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(215, 80%, 45%) 0%, hsl(220, 70%, 35%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(155, 70%, 40%) 0%, hsl(165, 75%, 35%) 100%);
    --gradient-card: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(210, 20%, 98%) 100%);

    /* Shadows */
    --shadow-soft: 0 4px 20px -4px hsla(215, 80%, 45%, 0.15);
    --shadow-glow: 0 0 40px hsla(155, 70%, 40%, 0.25);
    --shadow-card: 0 8px 30px -8px hsla(220, 30%, 15%, 0.08);

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Icon Sizes */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.75rem; height: 1.75rem; }

/* Text Colors */
.text-secondary { color: var(--secondary); }

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-full { width: 100%; }

.btn-primary {
    background: var(--gradient-hero);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-secondary:hover {
    background: hsl(155, 70%, 35%);
}

.btn-outline-secondary {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline-secondary:hover {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid hsla(0, 0%, 100%, 0.3);
    color: var(--primary-foreground);
}

.btn-outline-white:hover {
    background: hsla(0, 0%, 100%, 0.1);
}

.btn-whatsapp {
    background: hsl(142, 70%, 45%);
    color: white;
}

.btn-whatsapp:hover {
    background: hsl(142, 70%, 40%);
}

/* ==========================================
   Gradients
   ========================================== */
.gradient-hero { background: var(--gradient-hero); }
.gradient-accent { background: var(--gradient-accent); }

/* ==========================================
   Top Bar
   ========================================== */
.top-bar {
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    display: none;
}

@media (min-width: 768px) {
    .top-bar { display: block; }
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.top-bar-item:hover { opacity: 0.8; }

/* ==========================================
   Header
   ========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-hero);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Navigation Desktop */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop { display: flex; }
}

.nav-link {
    font-weight: 500;
    color: var(--foreground);
    position: relative;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-base);
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

/* Header CTA */
.header-cta-desktop {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .header-cta-desktop { display: flex; }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--foreground);
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid var(--border);
}

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

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.9;
}

.hero-animated-elements {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
}

.circle-1 {
    top: 5rem;
    right: 5rem;
    width: 18rem;
    height: 18rem;
    background: hsla(155, 70%, 40%, 0.2);
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    bottom: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: hsla(0, 0%, 100%, 0.1);
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.hero-text {
    max-width: 48rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Heading */
.hero-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-heading { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .hero-heading { font-size: 3.75rem; }
}

.hero-heading-block { display: block; }

/* Hero Subheading */
.hero-subheading {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 2rem;
    max-width: 36rem;
}

@media (min-width: 768px) {
    .hero-subheading { font-size: 1.25rem; }
}

/* Feature Pills */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
}

/* ==========================================
   Section Styles
   ========================================== */
.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title { font-size: 2.25rem; }
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

/* ==========================================
   Services Section
   ========================================== */
.services-section {
    padding: 5rem 0;
    background: hsla(210, 20%, 96%, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Service Card */
.service-card {
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid hsla(220, 20%, 90%, 0.5);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(2rem);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 12px 40px -12px hsla(220, 30%, 15%, 0.15);
}

.service-image-container {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(220, 30%, 15%, 0.6), transparent);
}

.service-title-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.service-content {
    padding: 1.5rem;
}

.service-description {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-feature {
    font-size: 0.75rem;
    font-weight: 500;
    background: hsla(215, 80%, 45%, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-choose-section {
    padding: 5rem 0;
    background: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid hsla(220, 20%, 90%, 0.5);
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: hsla(215, 80%, 45%, 0.3);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gradient-hero);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    margin-top: 4rem;
    background: hsla(210, 20%, 96%, 0.5);
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .trust-section { padding: 3rem; }
}

.trust-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .trust-grid { grid-template-columns: 1fr 1fr; }
}

.trust-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .trust-title { font-size: 1.875rem; }
}

.trust-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.trust-list {
    list-style: none;
}

.trust-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

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

.trust-stat-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.trust-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

@media (min-width: 768px) {
    .trust-stat-number { font-size: 2.25rem; }
}

.trust-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding: 5rem 0;
    background: hsla(210, 20%, 96%, 0.3);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    color: var(--foreground);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.contact-value:hover { color: var(--primary); }

.contact-value-text {
    color: var(--muted-foreground);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-section {
    margin-top: 2rem;
}

.social-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, hsl(280, 70%, 50%), hsl(340, 80%, 55%));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.instagram-link:hover { opacity: 0.9; }

/* Contact Form */
.contact-form-container {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid hsla(220, 20%, 90%, 0.5);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--input);
    background: var(--background);
    color: var(--foreground);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(215, 80%, 45%, 0.1);
}

.form-input::placeholder {
    color: var(--muted-foreground);
}

.form-textarea {
    resize: none;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand { max-width: 20rem; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(0, 0%, 100%, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo-subtitle {
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.7);
}

.footer-description {
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.6;
}

.footer-section-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
    color: hsla(0, 0%, 100%, 0.8);
    transition: var(--transition-base);
}

.footer-links a:hover { color: var(--secondary); }

.footer-services {
    list-style: none;
}

.footer-services li {
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 0.75rem;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact a {
    color: hsla(0, 0%, 100%, 0.8);
    transition: var(--transition-base);
}

.footer-contact a:hover { color: var(--secondary); }

.footer-contact span {
    color: hsla(0, 0%, 100%, 0.8);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: hsla(0, 0%, 100%, 0.7);
}

/* ==========================================
   WhatsApp Float Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: hsl(142, 70%, 45%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px hsla(142, 70%, 45%, 0.4);
    z-index: 40;
    transition: var(--transition-base);
    animation: pulse-slow 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px hsla(142, 70%, 45%, 0.5);
}

/* ==========================================
   Modal
   ========================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active { display: flex; }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: hsla(0, 0%, 0%, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 28rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px hsla(0, 0%, 0%, 0.2);
}

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

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.modal-close {
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    border-radius: 0.5rem;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--muted);
    color: var(--foreground);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ==========================================
   Toast
   ========================================== */
.toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background: var(--card);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px hsla(0, 0%, 0%, 0.2);
    z-index: 200;
    transition: transform 0.3s ease;
    max-width: 90%;
    border: 1px solid var(--border);
}

.toast.active {
    transform: translateX(-50%) translateY(0);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.toast-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out forwards;
}

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

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.6s; }

/* Initial states for animated elements */
.animate-slide-up,
.animate-fade-in {
    opacity: 0;
}
