/* IGNITR Landing Page Styles */

:root {
    --primary-blue: #3b82f6;
    --dark-blue: #1e40af;
    --light-blue: #60a5fa;
    --accent-orange: #ff6b35;
    --accent-gold: #ffd700;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding: 2rem 0;
}

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

/* Content Section */
.content-section {
    padding: 2rem;
    animation: fadeInLeft 0.8s ease-out;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Logo Styling */
.logo-container {
    text-align: left;
    margin-bottom: 2rem;
}

.ignitr-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Main Heading */
.main-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Description Box */
.description-box {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.price-item {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.price-amount.highlight {
    color: var(--accent-gold);
    font-size: 2.2rem;
}

/* Domains Section */
.domains-section {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.domains-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.domains-list li {
    font-size: 1.2rem;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.domains-list li:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.domains-list li i {
    color: var(--success);
    margin-right: 0.75rem;
}

/* CTA Text */
.cta-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.cta-text i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

/* Form Wrapper */
.form-wrapper {
    animation: fadeInRight 0.8s ease-out;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

/* Contact Card */
.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: none;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Form Styles */
.form-floating {
    margin-bottom: 1rem;
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */
button[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-blue);
    border: none;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

button[type="submit"]:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
}

.alert i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    body {
        padding: 1rem 0;
    }
    
    .content-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .pricing-section {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .ignitr-logo {
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 1.75rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .price-amount.highlight {
        font-size: 1.75rem;
    }
    
    .domains-list {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
.spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}
