/* Amana Brand Colors - Elegant Deep Navy & Slate */
:root {
    /* Primary - Midnight Sapphire */
    --primary-color: #1a1a2e;
    --primary-dark: #16213e;
    --primary-light: #0f3460;

    /* Secondary - Brushed Steel */
    --secondary-color: #2c3e50;
    --secondary-dark: #1a252f;
    --secondary-light: #34495e;

    /* Accent - Steel Blue (More Muted/Elegant) */
    --accent-color: #3b82f6;
    --accent-light: #93c5fd;

    /* Neutral colors */
    --white: #ffffff;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --border-color: #e2e8f0;
}

/* Override buttons with elegant dark theme */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2) !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.btn-primary:hover {
    background: var(--accent-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3) !important;
}

/* Service cards with subtle borders */
.service-card {
    border: 1px solid var(--border-color) !important;
    background: var(--white) !important;
    transition: all 0.3s ease !important;
}

.service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1) !important;
    border-color: var(--primary-light) !important;
}

.service-card i {
    color: var(--primary-color) !important;
    font-size: 3rem !important;
}

.service-card h3 {
    color: var(--text-dark) !important;
}

.service-card p {
    color: var(--text-muted) !important;
}

/* Section titles with better contrast */
.section-title h2 {
    color: var(--text-dark) !important;
    position: relative !important;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Top bar vibrant */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    color: white !important;
}

.top-bar a,
.top-bar i,
.top-bar span {
    color: white !important;
}

/* Logo accent */
.logo {
    color: var(--text-dark) !important;
}

.logo span {
    color: var(--secondary-color) !important;
}

/* Hero overlay - subtle to show image better */
.hero-overlay {
    background: rgba(15, 23, 42, 0.5) !important;
}

.hero h1 {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.hero p {
    color: rgba(255, 255, 255, 0.98) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4) !important;
}

/* CTA section with better readability */
.stats {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%) !important;
    color: var(--text-dark) !important;
}

.stats h2,
.stats h3 {
    color: var(--primary-dark) !important;
}

.stats p {
    color: var(--text-muted) !important;
}

/* Form inputs focus state */
.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(8, 145, 178, 0.25) !important;
}

/* Contact form card */
.form-card {
    border-top: 4px solid var(--primary-color) !important;
}

.form-card h3 {
    color: var(--text-dark) !important;
}

/* Navigation links hover */
.nav-links a {
    color: var(--text-dark) !important;
}

.nav-links a:hover {
    color: var(--primary-color) !important;
}

/* Contact info panel */
.contact-info-panel h2 {
    color: var(--text-dark) !important;
}

.contact-info-panel h4 {
    color: var(--text-dark) !important;
}

/* Footer white text and icons */
footer,
footer p,
footer h3,
footer a,
footer i,
footer .footer-bottom,
footer .logo {
    color: white !important;
}

footer .logo span {
    color: var(--accent-light) !important;
}

footer .contact-item-clean i {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

footer .contact-item-clean:hover i {
    background: white !important;
    color: var(--primary-color) !important;
}

/* Specific visibility fix for new circular contact icons */
.footer-contact-circle i,
footer .footer-contact-circle i {
    color: #1a1a2e !important;
}