/* Professional Theme Overrides */
:root {
    --primary-dark: #1a7a9e;
    --primary-light: #3caecf;
    --text-dark: #2c3e50;
    --text-light: #95a5a6;
    --bg-light: #f8f9fa;
}

body {
    color: var(--text-dark);
}

/* Hero Section - More Corporate/Clean */
.hero-section {
    min-height: 85vh; /* Slightly shorter */
    background-attachment: scroll; /* Better performance on mobile */
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 122, 158, 0.92) 0%, rgba(33, 37, 41, 0.85) 100%);
}

.hero-title {
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: capitalize;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
}

/* Cards - Minimalist */
.stat-card, .service-card, .help-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover, .service-card:hover, .help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-card {
    padding: 2.5rem 1.5rem;
}

/* Section Headers */
.section-header {
    position: relative;
    margin-bottom: 4rem;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* About Section */
.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 15px;
    opacity: 0.1;
    transform: translate(-10px, -10px);
    z-index: -1;
}

.about-image-wrapper img {
    border-radius: 10px;
}

/* Services/What We Do */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(37, 150, 190, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary-color);
}

.service-card:hover .service-icon-wrapper i {
    color: white !important;
}

/* Gallery */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 122, 158, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact Section */
.contact-card {
    background: white;
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-card-icon {
    background: rgba(37, 150, 190, 0.1);
    color: var(--primary-color);
}

.contact-card:hover .contact-card-icon {
    background: var(--primary-color);
    color: white;
}

.contact-card .contact-link {
    color: var(--text-dark);
}

.contact-card .contact-link:hover {
    color: var(--primary-color);
}
