/* Header Section */
.tc-header {
    /* background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); */
    /* color: white; */
    padding: 80px 0 60px;
    text-align: center;
}

.tc-header h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.tc-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content Area */
.tc-content-wrapper {
    margin-top: -30px; /* Pulls content up slightly over the header */
    padding-bottom: 60px;
}

/* Card Styling */
.tc-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.tc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.tc-card h3 {
    color: #0b5ed7; /* Professional Blue */
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tc-card h3 i {
    color: #198754; /* Trustworthy Green */
    margin-right: 12px;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.tc-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.tc-card ul {
    margin-top: 10px;
    margin-bottom: 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Highlighted Contact Box */
.contact-cta-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 94, 215, 0.1);
    border-top: 5px solid #0b5ed7;
    margin-top: 40px;
}

.contact-cta-box h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.contact-cta-box p {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Buttons */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.btn-call {
    background-color: #0b5ed7;
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-call:hover {
    background-color: #0a4ebd;
    color: white;
    box-shadow: 0 4px 12px rgba(11, 94, 215, 0.3);
    transform: translateY(-2px);
}

.btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .tc-header {
        padding: 60px 20px 50px;
    }
    .tc-header h1 {
        font-size: 2.2rem;
    }
    .contact-cta-box {
        padding: 30px 20px;
    }
    .d-grid-mobile {
        display: grid;
        gap: 15px;
    }
}
