/*
* Fasting Calendar - Enhanced CSS with Image-Free Designs
* Version: 3.0.0 - Vibrant Edition
*/

/* Enhanced CSS Variables for Better Theming */
:root {
    --primary-color: #FF7722;
    --primary-light: #FF9955;
    --primary-dark: #E85C00;
    --secondary-color: #138808;
    --accent-color: #FFD700;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-accent: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-dark: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  }
  
  /* CSS-Generated Backgrounds & Decorative Elements */
  .css-pattern {
    --dot-size: 2px;
    --dot-space: 22px;
    background-color: var(--primary-light);
    background-image: 
      radial-gradient(var(--accent-color) var(--dot-size), transparent var(--dot-size)),
      radial-gradient(var(--accent-color) var(--dot-size), transparent var(--dot-size));
    background-size: var(--dot-space) var(--dot-space);
    background-position: 0 0, calc(var(--dot-space)/2) calc(var(--dot-space)/2);
    opacity: 0.3;
  }
  
  .css-om-pattern {
    position: relative;
    overflow: hidden;
  }
  
  .css-om-pattern::before {
    content: "ॐ";
    position: absolute;
    font-size: 240px;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-family: "Arial Unicode MS", "Noto Sans", sans-serif;
    pointer-events: none;
    z-index: 0;
  }
  
  .css-mandala-bg {
    position: relative;
    overflow: hidden;
  }
  
  .css-mandala-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: 
      radial-gradient(circle at center, transparent 30%, rgba(255, 255, 255, 0.03) 30%, rgba(255, 255, 255, 0.03) 40%, 
                     transparent 40%, transparent 50%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.03) 60%,
                     transparent 60%, transparent 70%, rgba(255, 255, 255, 0.03) 70%, rgba(255, 255, 255, 0.03) 80%,
                     transparent 80%);
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
  }
  
  .css-mandala-bg::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(45deg);
    width: 300px;
    height: 300px;
    background: 
      radial-gradient(circle at center, transparent 30%, rgba(255, 255, 255, 0.03) 30%, rgba(255, 255, 255, 0.03) 40%, 
                     transparent 40%, transparent 50%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.03) 60%,
                     transparent 60%, transparent 70%, rgba(255, 255, 255, 0.03) 70%, rgba(255, 255, 255, 0.03) 80%,
                     transparent 80%);
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
  }
  
  /* CSS-Based Hero Background Pattern */
  .css-hero-pattern {
    position: relative;
    overflow: hidden;
  }
  
  .css-hero-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      linear-gradient(45deg, var(--primary-dark) 25%, transparent 25%), 
      linear-gradient(-45deg, var(--primary-dark) 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, var(--primary-dark) 75%),
      linear-gradient(-45deg, transparent 75%, var(--primary-dark) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
  }
  
  /* Enhanced CSS-Generated Indian Flag */
  .css-indian-flag {
    position: relative;
    width: 24px;
    height: 16px;
    display: inline-block;
    margin-right: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    border-radius: 2px;
  }
  
  .css-indian-flag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
      #FF9933 33.33%,
      white 33.33%, white 66.66%,
      #138808 66.66%);
  }
  
  .css-indian-flag::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid #000080;
    opacity: 0.8;
  }
  
  /* Enhanced CSS-Based Om Symbol */
  .css-om-symbol {
    position: relative;
    font-family: "Arial Unicode MS", "Noto Sans", sans-serif;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .css-om-symbol::before {
    content: "ॐ";
    position: absolute;
    font-size: 30px;
    color: var(--primary-color);
    animation: omGlow 3s infinite alternate;
  }
  
  @keyframes omGlow {
    from { 
      filter: drop-shadow(0 0 5px var(--primary-color));
      transform: scale(1);
    }
    to { 
      filter: drop-shadow(0 0 15px var(--accent-color));
      transform: scale(1.05);
    }
  }
  
  .css-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;          /* Reduced from 60px - more subtle */
    overflow: hidden;
    z-index: 1;
}

.css-wave::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    background: #ffc845;
    transform: translate(-25%, 30%);    /* Adjusted positioning */
    border-radius: 50% 50% 0 0;
    opacity: 0.95;         /* Slightly transparent for softer look */
}

.css-wave::after {
    content: "";           /* This was missing! */
    position: absolute;    /* This was missing! */
    width: 200%;          /* This was missing! */
    height: 100%;         /* This was missing! */
    background: #ff7722; /* This was missing! */
    border-radius: 50% 50% 0 0;   /* This was missing! */
    transform: translate(-50%, 40%);
    opacity: 0.7;   
}
  
  /* Enhanced Pure CSS Diya (Oil Lamp) for Decorations */
  .css-diya {
    position: relative;
    width: 40px;
    height: 20px;
    margin: 0 auto;
  }
  
  .css-diya::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 12px;
    background: linear-gradient(135deg, #9c4402, #cd5c02);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.3);
  }
  
  .css-diya::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 15px;
    background: 
      radial-gradient(ellipse at center, 
        rgba(255, 200, 0, 1) 0%, 
        rgba(255, 160, 0, 0.8) 50%, 
        rgba(255, 120, 0, 0) 70%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 2s infinite alternate;
  }
  
  @keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
      opacity: 1;
      transform: translateX(-50%) scale(1);
      filter: drop-shadow(0 0 8px rgba(255, 160, 0, 0.8));
    }
    20%, 24%, 55% { 
      opacity: 0.7;
      transform: translateX(-50%) scale(0.95);
      filter: drop-shadow(0 0 4px rgba(255, 160, 0, 0.5));
    }
  }
  
  /* Enhanced CSS-Based Feature Icons */
  .css-icon-calendar {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 119, 34, 0.3);
  }
  
  .css-icon-calendar::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 30px;
    border-radius: 2px;
    background-color: white;
    border: 2px solid white;
  }
  
  .css-icon-calendar::after {
    content: "";
    position: absolute;
    top: 20px;
    width: 24px;
    height: 1px;
    background-color: var(--primary-color);
    box-shadow: 0 4px 0 var(--primary-color), 0 8px 0 var(--primary-color);
  }
  
  .css-icon-bell {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 119, 34, 0.3);
  }
  
  .css-icon-bell::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 40% 40% 50% 50%;
    border: 2px solid white;
    border-top: none;
  }
  
  .css-icon-bell::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translateY(12px);
  }
  
  /* Enhanced 3D Card Effects */
  .feature-card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.4s ease;
    position: relative;
  }
  
  .feature-card-3d:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
      0 30px 60px rgba(255, 119, 34, 0.15), 
      0 10px 20px rgba(0,0,0,0.1);
  }
  
  .feature-card-3d:hover .feature-icon {
    transform: translateZ(20px) scale(1.1);
  }
  
  .feature-card-3d .feature-icon,
  .feature-card-3d h3,
  .feature-card-3d p {
    transition: all 0.4s ease;
  }
  
  .feature-card-3d:hover h3 {
    transform: translateZ(15px);
    color: var(--primary-color);
  }
  
  .feature-card-3d:hover p {
    transform: translateZ(10px);
  }
  
  /* Enhanced Interactive Steps Cards */
  .step-card-interactive {
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .step-card-interactive::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
  }
  
  .step-card-interactive:hover::before {
    opacity: 0.1;
  }
  
  .step-card-interactive:hover .step-number {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255,119,34,0.4);
  }
  
  .step-card-interactive .step-number {
    transition: all 0.4s ease;
  }
  
  /* Enhanced Floating Animation */
  @keyframes float {
    0% {
      transform: translateY(0px) rotate(0deg);
    }
    33% {
      transform: translateY(-10px) rotate(1deg);
    }
    66% {
      transform: translateY(-20px) rotate(-1deg);
    }
    100% {
      transform: translateY(0px) rotate(0deg);
    }
  }
  
  .floating-animation {
    animation: float 8s ease-in-out infinite;
  }
  
  /* Enhanced Pulse Animation for CTAs */
  @keyframes pulse-border {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 119, 34, 0.6);
    }
    50% {
      box-shadow: 0 0 0 15px rgba(255, 119, 34, 0.1);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 119, 34, 0);
    }
  }
  
  .btn-pulse {
    animation: pulse-border 2.5s infinite;
  }
  
  /* Enhanced Modern Pricing Table */
  .pricing-card-modern {
    border: none;
    border-radius: 16px;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    background: white;
  }
  
  .pricing-card-modern::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    height: 10px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.4s ease;
  }
  
  .pricing-card-modern:hover::before {
    top: 0;
    opacity: 1;
  }
  
  .pricing-card-modern.featured::before {
    top: 0;
    opacity: 1;
    height: 5px;
  }
  
  .pricing-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 119, 34, 0.2);
  }
  
  /* Enhanced CSS-based Testimonial Quotes */
  .testimonial-quote {
    position: relative;
  }
  
  .testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--primary-light);
    opacity: 0.2;
    line-height: 1;
  }
  
  /* Enhanced Modern FAQ Accordion */
  .accordion-modern {
    border: none;
    background: transparent;
  }
  
  .accordion-modern .accordion-item {
    background: white;
    border: none;
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(255, 119, 34, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .accordion-modern .accordion-item:hover {
    box-shadow: 0 10px 25px rgba(255, 119, 34, 0.15);
    transform: translateY(-2px);
  }
  
  .accordion-modern .accordion-button {
    border-radius: 12px;
    padding: 20px 24px;
    background: white;
    border: none;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
  }
  
  .accordion-modern .accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px 12px 0 0;
  }
  
  .accordion-modern .accordion-button:focus {
    box-shadow: none;
  }
  
  .accordion-modern .accordion-button::after {
    background-size: 16px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
  }
  
  .accordion-modern .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
  }
  
  /* Enhanced Visual Feedback for Interactive Elements */
  .interactive-element {
    transition: all 0.3s ease;
    transform-origin: center;
    cursor: pointer;
  }
  
  .interactive-element:hover {
    transform: scale(1.05);
  }
  
  .interactive-element:active {
    transform: scale(0.98);
  }
  
  /* Enhanced Better Form Inputs */
  .form-control-modern {
    border-radius: 10px;
    border: 2px solid rgba(255, 119, 34, 0.1);
    padding: 15px 20px;
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.9);
    font-size: 1rem;
  }
  
  .form-control-modern:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,119,34,0.2);
    outline: none;
    transform: translateY(-2px);
  }
  
  .form-control-modern:hover {
    border-color: var(--primary-light);
  }
  
  /* Enhanced Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 6px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
    border: 2px solid var(--light-bg);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
  }
  
  /* Enhanced CSS-based Loader */
  .css-loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  
  .css-loader div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  
  .css-loader div:nth-child(1) {
    left: 8px;
    animation: css-loader1 0.8s infinite;
  }
  
  .css-loader div:nth-child(2) {
    left: 8px;
    animation: css-loader2 0.8s infinite;
  }
  
  .css-loader div:nth-child(3) {
    left: 32px;
    animation: css-loader2 0.8s infinite;
  }
  
  .css-loader div:nth-child(4) {
    left: 56px;
    animation: css-loader3 0.8s infinite;
  }
  
  @keyframes css-loader1 {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
  }
  
  @keyframes css-loader2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 0); }
  }
  
  @keyframes css-loader3 {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
  }
  
  /* Enhanced Morphing Shapes Background */
  .morphing-bg {
    position: relative;
    overflow: hidden;
  }
  
  .morphing-bg::before,
  .morphing-bg::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 43% 57% 70% 30% / 45% 55% 45% 55%;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: -1;
    animation: morph 20s linear infinite alternate;
  }
  
  .morphing-bg::before {
    top: -250px;
    left: -100px;
  }
  
  .morphing-bg::after {
    bottom: -250px;
    right: -100px;
    animation-direction: alternate-reverse;
    animation-duration: 25s;
  }
  
  @keyframes morph {
    0% {
      border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
      transform: rotate(0deg);
    }
    50% {
      border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
      transform: rotate(180deg);
    }
    100% {
      border-radius: 40% 60% 70% 30% / 30% 40% 60% 70%;
      transform: rotate(360deg);
    }
  }
  
  /* Enhanced CSS-based Sparkles Animation */
  .sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0;
    pointer-events: none;
  }
  
  @keyframes sparkle {
    0% {
      transform: scale(0) translate(0, 0);
      opacity: 0;
    }
    25% {
      opacity: 1;
    }
    75% {
      opacity: 1;
    }
    100% {
      transform: scale(1) translate(30px, -30px);
      opacity: 0;
    }
  }
  
  .generate-sparkle {
    position: relative;
    overflow: hidden;
  }
  
  .generate-sparkle::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    animation: sparkle 3s infinite;
  }
  
  /* Enhanced Branded Preloader */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
  }
  
  .preloader-logo {
    position: relative;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 20px;
    animation: preloaderPulse 2s infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  
  .preloader-logo::before {
    content: "ॐ";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: var(--primary-color);
    font-family: "Arial Unicode MS", "Noto Sans", sans-serif;
  }
  
  @keyframes preloaderPulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    
    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  
  /* Enhanced App Mockup using CSS */
  .app-mockup-enhanced {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 
      0 20px 60px rgba(0,0,0,0.1),
      inset 0 1px 0 rgba(255,255,255,0.5);
    animation: phoneFloat 6s ease-in-out infinite;
  }
  
  @keyframes phoneFloat {
    0%, 100% { 
      transform: translateY(0px) rotate(0deg); 
    }
    33% { 
      transform: translateY(-10px) rotate(1deg); 
    }
    66% { 
      transform: translateY(-20px) rotate(-1deg); 
    }
  }
  
  .mockup-screen-enhanced {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
  }
  
  .mockup-screen-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 25px;
    background: #000;
    border-radius: 0 0 15px 15px;
    opacity: 0.8;
  }
  
  .mockup-content-enhanced {
    position: absolute;
    top: 40px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
  }
  
  .mockup-header-enhanced {
    height: 15px;
    background: var(--gradient-primary);
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .mockup-calendar-enhanced {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 20px;
  }
  
  .mockup-day-enhanced {
    height: 30px;
    background: var(--light-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--text-color);
    transition: all 0.3s ease;
  }
  
  .mockup-day-enhanced:nth-child(7n+1) { 
    background: rgba(255, 119, 34, 0.2); 
  }
  
  .mockup-day-enhanced:nth-child(11) { 
    background: var(--primary-color); 
    color: white; 
    animation: dayPulse 2s infinite;
  }
  
  .mockup-day-enhanced:nth-child(17) { 
    background: rgba(19, 136, 8, 0.2); 
  }
  
  .mockup-day-enhanced:nth-child(23) { 
    background: var(--primary-color); 
    color: white; 
    animation: dayPulse 2s infinite 1s;
  }
  
  @keyframes dayPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }
  
  /* Enhanced Modern Button Styles */
  .btn-modern-enhanced {
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    text-transform: none;
    letter-spacing: 0.5px;
  }
  
  .btn-modern-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
  }
  
  .btn-modern-enhanced:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .btn-modern-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 119, 34, 0.3);
  }
  
  /* Enhanced Stylish Badges */
  .badge-stylish-enhanced {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 119, 34, 0.3);
  }
  
  /* Modern Image Placeholder with Icon */
  .image-placeholder-enhanced {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--gradient-primary);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .image-placeholder-enhanced::before {
    content: "🖼️";
    font-size: 48px;
    opacity: 0.8;
  }
  
  .image-placeholder-enhanced::after {
    content: "Image Coming Soon";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
  }
  
  /* Enhanced Pure CSS Play Button */
  .play-button-enhanced {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 119, 34, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .play-button-enhanced::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid white;
  }
  
  .play-button-enhanced:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 119, 34, 0.5);
  }
  
  /* CSS-based illustrations for steps */
  .illustration-calendar-enhanced {
    position: relative;
    width: 200px;
    height: 180px;
    margin: 0 auto;
  }
  
  .illustration-calendar-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 140px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(255, 119, 34, 0.2);
  }
  
  .illustration-calendar-enhanced::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 6px 6px 0 0;
  }
  
  /* Enhanced Festival Decorations */
  .festival-decoration {
    position: absolute;
    font-size: 2rem;
    animation: festivalFloat 4s ease-in-out infinite;
    opacity: 0.6;
  }
  
  @keyframes festivalFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
  }
  
  .festival-decoration:nth-child(1) { 
    top: 10%; 
    left: 10%; 
    animation-delay: 0s; 
  }
  
  .festival-decoration:nth-child(2) { 
    top: 20%; 
    right: 15%; 
    animation-delay: 1s; 
  }
  
  .festival-decoration:nth-child(3) { 
    bottom: 20%; 
    left: 20%; 
    animation-delay: 2s; 
  }
  
  .festival-decoration:nth-child(4) { 
    bottom: 10%; 
    right: 10%; 
    animation-delay: 3s; 
  }
  
  /* Enhanced Responsive Typography */
  @media (max-width: 767px) {
    h1 {
      font-size: calc(1.8rem + 1vw) !important;
    }
    
    h2 {
      font-size: calc(1.5rem + 0.5vw) !important;
    }
    
    .lead {
      font-size: calc(1rem + 0.2vw) !important;
    }
    
    .app-mockup-enhanced {
      width: 250px;
      height: 500px;
    }
    
    .festival-decoration {
      font-size: 1.5rem;
    }
  }
  
  /* Color Variants for Different Contexts */
  .variant-success {
    --primary-color: var(--success-color);
    --primary-light: #28a745;
    --primary-dark: #1e7e34;
  }
  
  .variant-info {
    --primary-color: var(--info-color);
    --primary-light: #17a2b8;
    --primary-dark: #117a8b;
  }
  
  .variant-warning {
    --primary-color: var(--warning-color);
    --primary-light: #ffc107;
    --primary-dark: #e0a800;
  }
  
  /* Enhanced Loading States */
  .loading-shimmer {
    background: linear-gradient(90deg, 
      rgba(255, 119, 34, 0.1) 25%, 
      rgba(255, 119, 34, 0.2) 50%, 
      rgba(255, 119, 34, 0.1) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
  }
  
  @keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
  }
  
  /* Enhanced Focus States for Accessibility */
  .focus-enhanced:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.3);
  }
  
  /* Print Styles */
  @media print {
    .css-om-pattern::before,
    .css-mandala-bg::before,
    .css-mandala-bg::after,
    .festival-decoration {
      display: none;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-card {
      box-shadow: none;
      border: 1px solid #ddd;
    }
  }
  
  /* High Contrast Mode Support */
  @media (prefers-contrast: high) {
    :root {
      --primary-color: #000;
      --primary-light: #333;
      --primary-dark: #000;
      --accent-color: #000;
      --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }
  }
  /* Fix for missing image placeholders */
.decoration-diya-left {
    left: 15px !important;
    opacity: 0.6;
  }
  
  .decoration-diya-right {
    right: 15px !important;
    opacity: 0.6;
  }
  
  /* Hide broken images gracefully */
  img[src*="logo"]:not([src=""]) {
    max-height: 40px;
  }
  
  img[src*="badge"]:not([src=""]) {
    height: 40px;
  }
  
  /* Navbar logo fallback */
  .navbar-brand::before {
    content: "🪔";
    font-size: 1.8rem;
    margin-right: 8px;
  }
  
  /* Footer logo fallback */
  .footer-about h4::before {
    content: "🪔";
    font-size: 1.5rem;
    margin-right: 8px;
  }
  * Festive Mode Styles */
.festive-mode {
    position: relative;
}

.festive-mode::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 119, 34, 0.05) 0%, 
        rgba(255, 215, 0, 0.05) 50%, 
        rgba(255, 119, 34, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
    animation: festiveGlow 4s ease-in-out infinite alternate;
}

@keyframes festiveGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

@keyframes festiveParticle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Style the festive toggle */
.festive-toggle .form-check {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.festive-toggle .form-check:hover {
    background: rgba(255, 255, 255, 0.2);
}

.festive-toggle .form-check-input {
    margin-right: 8px;
}

.festive-toggle .form-check-label {
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
}
/* Fixed Rangoli Decorations */
.rangoli-decoration {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.8;
}

.rangoli-decoration::after {
    content: "🌸 ✦ 🪔 ✦ 🌸";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    letter-spacing: 8px;
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(255, 119, 34, 0.3));
    animation: rangoliGlow 4s ease-in-out infinite alternate;
}

@keyframes rangoliGlow {
    from { 
        opacity: 0.6;
        filter: drop-shadow(0 2px 4px rgba(255, 119, 34, 0.3));
    }
    to { 
        opacity: 1;
        filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.5));
    }
}

/* Ensure sections have proper positioning */
section {
    position: relative;
    overflow: visible;
}

/* Hide rangoli on header sections */
.page-header .rangoli-decoration,
.hero .rangoli-decoration,
.download .rangoli-decoration,
.footer .rangoli-decoration {
    display: none !important;
}