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

body {
    font-family: 'Poppins', sans-serif;
    position: relative;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation Styles */
nav {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: #e5e7eb;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.nav-link:hover {
    color: #fa6027;
    background: rgba(255, 81, 0, 0.1);
}

.nav-link.active {
    color: #fa6027;
    background: rgba(255, 94, 0, 0.15);
    border-bottom: 2px solid #fa6027;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    nav .flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav .flex > div {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Animated Background Stars - Disabled */
.stars, .stars2, .stars3 {
    display: none;
}

/* Logo Title with Glow Effect */
.logo-title {
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 102, 0, 0.6),
        0 0 20px rgba(255, 102, 0, 0.6);
    animation: pulse 3s ease-in-out infinite;
    letter-spacing: 0.1em;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.8),
            0 0 10px rgba(255, 102, 0, 0.6),
            0 0 20px rgba(255, 102, 0, 0.6);
    }
    50% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.8),
            0 0 15px rgba(255, 102, 0, 0.6),
            0 0 30px rgba(255, 102, 0, 0.6);
    }
}

/* Card Examples */
.card-example {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.card-inner {
    position: relative;
    transition: transform 0.5s ease;
}

.card-example:hover .card-inner {
    transform: scale(1.05) rotateY(5deg);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.card-example:hover .card-overlay {
    transform: translateY(0);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #fa6027, #fa6027);
    color: #0B0C10;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.6);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.cta-button-secondary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border: 3px solid #fa6027;
    color: #fa6027;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(255, 81, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.cta-button-secondary:hover {
    background: linear-gradient(135deg, #fa6027, #fa6027);
    color: #0B0C10;
    border-color: #fa6027;
    box-shadow: 
        0 0 30px rgba(255, 102, 0, 0.6),
        0 0 60px rgba(255, 102, 0, 0.6);
    transform: translateY(-3px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    box-shadow: 
        0 0 30px rgba(255, 38, 0, 0.8),
        0 0 60px rgba(255, 81, 0, 0.6),
        0 0 90px rgba(255, 102, 0, 0.6);
    transform: translateY(-3px);
}

/* Pricing Cards */
.pricing-card {
    background: linear-gradient(135deg, rgba(16, 23, 42, 0.95), rgba(11, 12, 16, 0.95));
    border: 3px solid rgba(255, 102, 0, 0.6);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 51, 0, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1;
    animation: rotateGlow 3s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pricing-card:hover {
    border-color: #fa6027;
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(255, 72, 0, 0.4),
        0 0 80px rgba(255, 94, 0, 0.3),
        inset 0 0 30px rgba(255, 102, 0, 0.1);
}

.pricing-card.popular,
.pricing-card.best-value {
    border-color: #fa6027;
    border-width: 4px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(16, 23, 42, 0.95));
}

.pricing-card.best-value {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(16, 23, 42, 0.95));
}

.popular-badge {
    position: absolute;
    top: -0.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #fa6027, #fa6027);
    color: #0B0C10;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 
        0 6px 20px rgba(255, 102, 0, 0.6),
        0 0 30px rgba(255, 102, 0, 0.6);
    z-index: 10;
}

.popular-badge.best {
    background: linear-gradient(135deg, #FF6B00, #fa6027, #FF6B00);
    background-size: 200% 200%;
    animation: badgePulse 2s ease-in-out infinite, gradientShift 3s ease infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 6px 20px rgba(255, 102, 0, 0.6),
            0 0 30px rgba(255, 102, 0, 0.6);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 
            0 8px 30px rgba(255, 102, 0, 0.6),
            0 0 50px rgba(255, 102, 0, 0.6);
    }
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 38, 0, 0.5));
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fa6027;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 
        0 0 20px rgba(255, 81, 0, 0.6),
        0 0 40px rgba(255, 51, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.5);
    margin: 1rem 0;
    line-height: 1;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.5));
    color: #4ade80;
    padding: 0.4rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.5rem;
    border: 2px solid rgba(74, 222, 128, 0.5);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.3);
}

.savings-badge.best {
    background: linear-gradient(135deg, rgba(72, 255, 0, 0.3), rgba(108, 173, 3, 0.5));
    color: #4eda49;
    border-color: rgba(9, 255, 0, 0.6);
    box-shadow: 0 0 20px rgba(102, 255, 0, 0.4);
    animation: savingsPulse 2s ease-in-out infinite;
}

@keyframes savingsPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.6rem 0;
    color: #e5e7eb;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.features-list li:hover {
    color: #e97305;
    transform: translateX(5px);
}

.features-list li i {
    color: #4ade80;
    font-size: 1rem;
    min-width: 20px;
}

.features-list li i.fa-star {
    color: #fa6027;
}

/* Order Button */
.order-button {
    background: linear-gradient(135deg, rgba(255, 51, 0, 0.15), rgba(255, 72, 0, 0.15));
    border: 3px solid #fa6027;
    color: #fa6027;
    padding: 1.2rem 2rem;
    border-radius: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

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

.order-button:hover::before {
    width: 300px;
    height: 300px;
}

.order-button .button-text,
.order-button .button-icon {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.order-button .button-icon {
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.order-button:hover {
    background: linear-gradient(135deg, #fa6027, #fa6027);
    color: #0B0C10;
    border-color: #fa6027;
    box-shadow: 
        0 0 40px rgba(255, 81, 0, 0.7),
        0 10px 30px rgba(255, 81, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.03);
}

.order-button:hover .button-icon {
    transform: translateX(5px) rotate(15deg) scale(1.2);
}

.order-button:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 
        0 0 30px rgba(255, 81, 0, 0.6),
        0 5px 20px rgba(255, 72, 0, 0.3);
}

/* Ripple effect on click */
.order-button::after {
    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 ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.order-button.clicked::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, rgba(16, 23, 42, 0.9), rgba(11, 12, 16, 0.9));
    border: 2px solid rgba(255, 81, 0, 0.3);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.contact-item:hover {
    border-color: #fa6027;
    background: rgba(255, 51, 0, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fa6027, #fa6027);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0B0C10;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(255, 51, 0, 0.4);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 81, 0, 0.6);
}

/* Social Icons */
.social-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 60, 0, 0.2), rgba(255, 94, 0, 0.2));
    border: 2px solid #fa6027;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fa6027;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, #fa6027, #fa6027);
    color: #0B0C10;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.5);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fa6027, #fa6027);
    color: #0B0C10;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 81, 0, 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(255, 102, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-title {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .price {
        font-size: 2.8rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .features-list li {
        font-size: 0.95rem;
    }
    
    .order-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
    
    .savings-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax Effect */
#hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0B0C10;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #fa6027, #fa6027);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #fa6027, #fa6027);
}

/* Selection Color */
::selection {
    background: #fa6027;
    color: #0B0C10;
}

::-moz-selection {
    background: #fa6027;
    color: #0B0C10;
}

/* Additional improvements for readability */
.pricing-card h3 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.pricing-card p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Improve contrast for better readability */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Focus states for accessibility */
.order-button:focus,
.cta-button:focus {
    outline: 3px solid #fa6027;
    outline-offset: 3px;
}

a:focus {
    outline: 2px solid #fa6027;
    outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
button, a, .pricing-card, .contact-item {
    will-change: transform;
}

/* Prevent layout shift */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Better text contrast on dark background */
.pricing-card .features-list li {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Enhance button visibility */
.order-button {
    box-shadow: 
        0 4px 15px rgba(255, 60, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Add subtle glow to important text */
h2, h3 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Improve card readability */
.pricing-card {
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 94, 0, 0.1) inset;
}

/* Better hover feedback */
.pricing-card:hover {
    box-shadow: 
        0 20px 60px rgba(255, 115, 0, 0.4),
        0 0 80px rgba(255, 72, 0, 0.3),
        inset 0 0 30px rgba(255, 81, 0, 0.1),
        0 0 0 1px rgba(255, 81, 0, 0.5) inset;
}

/* Order Modal */
.order-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.order-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.order-modal-content {
    background: linear-gradient(135deg, rgba(16, 23, 42, 0.98), rgba(11, 12, 16, 0.98));
    border: 3px solid #fa6027;
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(255, 115, 0, 0.4),
        0 0 100px rgba(255, 102, 0, 0.3);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.order-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #fa6027;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.order-modal-close:hover {
    color: #fa6027;
    transform: rotate(90deg) scale(1.2);
}

/* Form Styles */
.order-modal input:focus,
.order-modal textarea:focus {
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.order-modal input::placeholder,
.order-modal textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .order-modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .order-modal-close {
        font-size: 2rem;
        top: 0.75rem;
        right: 1rem;
    }
}

/* Error notification style */
.order-notification.error {
    border-color: #ef4444;
}

.order-notification.error .notification-content i {
    color: #ef4444;
}

.order-notification.error .notification-content h4 {
    color: #ef4444;
}
