/**
 * DabMan Website Styles
 * Maxxwave Ltd
 */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --background: #f8f9fa;
    --text-muted: #6c757d;
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}

/* Typography */
body {
    font-family: 'IBM Plex Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: #212529;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 700;
    text-decoration: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    display: block;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.25rem;
}

.nav-link {
    font-weight: 500;
    color: #495057 !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-login {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
}

.btn-login:hover {
    background: linear-gradient(135deg, #5a6fd6, #6a4190);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta .btn {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0.5rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd6, #6a4190);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(102, 126, 234, 0.3);
}

.btn-outline-primary {
    color: white;
    border: 2px solid white;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline-light {
    border: 2px solid #dee2e6;
    color: #495057;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.card-icon.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.card-icon.success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.card-icon.info {
    background: linear-gradient(135deg, #17a2b8, #0dcaf0);
    color: white;
}

.card-icon.warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
}

/* Feature Sections */
.feature-section {
    padding: 5rem 0;
}

.feature-section:nth-child(even) {
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #212529;
}

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

/* Screenshot Placeholder */
.screenshot-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
}

.screenshot-placeholder i {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* Screenshot Images */
.feature-section img.img-fluid {
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-section img.img-fluid:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid #dee2e6;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    background: white;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0.5rem 1rem rgba(102, 126, 234, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.pricing-price small {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* Getting Started Cards */
.getting-started-card {
    border-left: 4px solid;
    transition: var(--transition);
}

.getting-started-card.integrate {
    border-left-color: var(--primary-color);
}

.getting-started-card.new {
    border-left-color: var(--success-color);
}

.getting-started-card.managed {
    border-left-color: var(--warning-color);
}

.getting-started-card:hover {
    border-left-width: 8px;
}

/* Contact Form */
.form-control, .form-select {
    border-radius: var(--border-radius);
    border: 2px solid #dee2e6;
    padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Footer */
.footer {
    background: #212529;
    color: #adb5bd;
    padding: 4rem 0 0;
    margin-top: 5rem;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    margin: 0;
}

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

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #343a40;
}

.footer a {
    color: #adb5bd;
    transition: var(--transition);
}

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

/* Email/Phone Protection */
.email-link, .phone-link {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
}

.email-link:hover, .phone-link:hover {
    text-decoration-style: solid;
}

.email-link.revealed {
    cursor: default;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
