/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #00d9ff;
    --pink-accent: #ff2e97;
    --green-accent: #00ff88;
    --dark-color: #000000;
    --light-color: #f8f8f8;
    --text-color: #ffffff;
    --white: #ffffff;
    --error: #ff3838;
    --success: #00ff88;
    --info: #00d9ff;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: #000000;
}

/* Container and Background */
.container {
    min-height: 100vh;
    position: relative;
    background: #000000;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 46, 151, 0.1) 0%, transparent 60%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 107, 53, 0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 217, 255, 0.03) 50%, transparent 52%);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Content */
.content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    color: var(--white);
}

/* Logo Section */
.logo-section {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    animation: pulse 2s ease-in-out infinite;
}

.logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.business-name {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 
        0 0 20px rgba(255, 107, 53, 0.8),
        0 0 40px rgba(255, 107, 53, 0.5),
        0 0 60px rgba(0, 217, 255, 0.3);
    margin-bottom: 10px;
    letter-spacing: 3px;
    border-radius: 10px;
}

/* Tagline */
.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    font-style: normal;
    letter-spacing: 2px;
    animation: fadeIn 1.5s ease-out;
}

/* Main Message */
.main-message {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 50px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.main-message::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--pink-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.main-message h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 1px;
}

.main-message p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(40, 40, 40, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: transform 0.6s ease;
    transform: rotate(0deg);
}

.feature:hover::before {
    transform: rotate(180deg);
}

.feature:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 
        0 10px 40px rgba(255, 107, 53, 0.5),
        0 0 20px rgba(0, 217, 255, 0.3);
}

.feature:nth-child(2) {
    border-color: rgba(0, 217, 255, 0.3);
}

.feature:nth-child(2):hover {
    border-color: var(--accent-color);
    box-shadow: 
        0 10px 40px rgba(0, 217, 255, 0.5),
        0 0 20px rgba(255, 107, 53, 0.3);
}

.feature:nth-child(3) {
    border-color: rgba(0, 255, 136, 0.3);
}

.feature:nth-child(3):hover {
    border-color: var(--green-accent);
    box-shadow: 
        0 10px 40px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(255, 46, 151, 0.3);
}

.feature .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
    letter-spacing: 1px;
}

.feature p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(255, 46, 151, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 40px;
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--pink-accent), var(--primary-color), var(--secondary-color)) 1;
    border-radius: 30px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.9s both;
    box-shadow: 
        0 0 30px rgba(255, 46, 151, 0.2),
        inset 0 0 30px rgba(255, 107, 53, 0.1);
}

.newsletter-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: 1px;
}

.newsletter-section > p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 25px;
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: rgba(20, 20, 20, 0.8);
    color: var(--white);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(30, 30, 30, 0.9);
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.5),
        0 0 40px rgba(0, 217, 255, 0.3);
}

.newsletter-form button {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(0, 217, 255, 0.4);
}

.newsletter-form button:active {
    transform: translateY(0);
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    animation: slideDown 0.5s ease-out;
}

.alert-success {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 217, 255, 0.2));
    color: var(--white);
    border: 2px solid var(--green-accent);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.alert-error {
    background: linear-gradient(135deg, rgba(255, 56, 56, 0.2), rgba(255, 46, 151, 0.2));
    color: var(--white);
    border: 2px solid var(--error);
    box-shadow: 0 0 20px rgba(255, 56, 56, 0.3);
}

.alert-info {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(255, 107, 53, 0.2));
    color: var(--white);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeIn 1.5s ease-out 1.2s both;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-out 1.5s both;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(0, 217, 255, 0.2));
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.5);
}

.social-links a:nth-child(1) {
    border-color: rgba(255, 107, 53, 0.5);
}

.social-links a:nth-child(2) {
    border-color: rgba(255, 46, 151, 0.5);
}

.social-links a:nth-child(3) {
    border-color: rgba(0, 217, 255, 0.5);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 5px 20px rgba(255, 107, 53, 0.5),
        0 0 30px rgba(0, 217, 255, 0.3);
    border-color: var(--primary-color);
}

.social-links a:nth-child(2):hover {
    background: linear-gradient(135deg, var(--pink-accent), var(--secondary-color));
    box-shadow: 
        0 5px 20px rgba(255, 46, 151, 0.5),
        0 0 30px rgba(247, 147, 30, 0.3);
}

.social-links a:nth-child(3):hover {
    background: linear-gradient(135deg, var(--accent-color), var(--green-accent));
    box-shadow: 
        0 5px 20px rgba(0, 217, 255, 0.5),
        0 0 30px rgba(0, 255, 136, 0.3);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* Footer */
footer {
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .main-message {
        padding: 30px 20px;
    }

    .main-message h3 {
        font-size: 2rem;
    }

    .main-message p {
        font-size: 1rem;
    }

    .newsletter-section {
        padding: 30px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .business-name {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .main-message h3 {
        font-size: 1.5rem;
    }

    .logo {
        width: 80px;
        height: 80px;
    }
}
