/* Altura Sites - White, Green, Black Theme */
:root {
    --primary-green: #22c55e;
    --dark-green: #16a34a;
    --light-green: #4ade80;
    --black: #000000;
    --dark-gray: #111111;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-gray: #e5e7eb;
}

/* Clean background - particles removed */

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

/* Force text to be selectable - override Bootstrap and other frameworks */
html, body, main, section, article, div, p, h1, h2, h3, h4, h5, h6, span, 
li, ul, ol, a, em, strong, small, .container, .row, .col, .col-md-6, .col-lg-6 {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    cursor: text !important;
}

/* Restore normal cursor for clickable elements */
a, button, .btn, input, select, textarea {
    cursor: pointer !important;
}

/* Only prevent selection on specific interactive elements */
button, .btn, input[type="button"], input[type="submit"], .navbar-toggler {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    cursor: pointer !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

/* Navigation */
.navbar {
    background-color: var(--white) !important;
    border-bottom: 1px solid var(--border-gray);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black) !important;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--black) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary-green {
    background-color: var(--primary-green);
    border: none;
    color: var(--white);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
}

.btn-primary-green:hover {
    background-color: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-outline-green {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
}

.btn-outline-green:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    border-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-check {
    width: 24px;
    height: 24px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-check i {
    color: var(--white);
    font-size: 0.8rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--white);
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

.pricing-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #6b7280;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
}

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

.pricing-features i {
    color: var(--primary-green);
    margin-right: 0.75rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .services-section,
    .features-section,
    .pricing-section,
    .contact-section {
        padding: 60px 0;
    }
}

/* Hero Features */
.hero-features .feature-check {
    background-color: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--white);
}

.cta-box .feature-check {
    background-color: var(--white);
    color: var(--primary-green);
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
}

.mobile-app-features {
    background-color: var(--light-gray) !important;
    border: 1px solid var(--border-gray);
}

/* Alert customization */
.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--black);
}

.alert-success .alert-heading {
    color: var(--primary-green);
}

/* Automation Services */
.automation-item {
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    height: 100%;
    transition: all 0.3s ease;
}

.automation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.1);
    border-color: var(--primary-green);
}

.automation-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.automation-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.automation-item p {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Utility Classes */
.text-green {
    color: var(--primary-green) !important;
}

.bg-green {
    background-color: var(--primary-green) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

.border-green {
    border-color: var(--primary-green) !important;
}

.shadow-green {
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3) !important;
}

.mb-6 {
    margin-bottom: 4rem !important;
}

.py-6 {
    padding: 4rem 0 !important;
}

/* Clean Price Calculator Styles */
#price-calculator {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 253, 250, 0.98) 100%);
    border: 2px solid rgba(34, 197, 94, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.08);
}

#price-calculator:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.12);
}

#calculator-divider {
    border-color: rgba(34, 197, 94, 0.2);
    margin: 1rem 0;
}

.price-breakdown {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.savings-indicator {
    background: rgba(34, 197, 94, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

/* Form checkbox and radio animations */
.form-check-input {
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: #22c55e;
    border-color: #22c55e;
    transform: scale(1.1);
}

.form-check-label {
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check-input:checked + .form-check-label {
    color: #22c55e;
    transform: translateX(5px);
}

/* Service radio button styling */
.service-radio {
    width: 20px;
    height: 20px;
}

.service-radio:checked + .form-check-label {
    background-color: rgba(34, 197, 94, 0.1);
    padding: 8px;
    border-radius: 8px;
    transform: translateX(0);
}

/* Enhanced button styles */
.btn-primary-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-primary-green:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    color: white;
}

/* Pulse animation for total price */
#total-price {
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
}

/* Card hover effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
}

/* Clean background without particles */
body {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(248,249,250,1) 100%);
}

/* About Us Section Styles */
.about-stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.about-image-container {
    padding: 2rem;
}

.about-card {
    border: 2px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.15);
}

.about-icon {
    font-size: 3rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-features .feature-check {
    background: var(--green);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Cool button effects for interactivity */
.btn-primary-green {
    position: relative;
    overflow: hidden;
}

.btn-primary-green::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.6s;
}

.btn-primary-green:hover::before {
    left: 100%;
}

/* Enhanced form interactions */
.form-control:focus {
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    transform: scale(1.02);
}

.form-select:focus {
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    transform: scale(1.02);
}

/* Magical glow effects */
.hero-title {
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 0 30px rgba(34, 197, 94, 0.5); }
    to { text-shadow: 0 0 50px rgba(34, 197, 94, 0.8), 0 0 80px rgba(34, 197, 94, 0.3); }
}

/* Interactive navigation */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 20px rgba(34, 197, 94, 0.1);
}

/* Cool scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #16a34a, #15803d);
}